Skip to content
This repository has been archived by the owner on Apr 25, 2021. It is now read-only.

Latest commit

 

History

History
28 lines (21 loc) · 509 Bytes

CONTRIBUTING.md

File metadata and controls

28 lines (21 loc) · 509 Bytes

Steps to publish

$ sbt -Dsbt.build.version=1.0.3 -Dsbt.build.offline=true
> universal:publish
> debian:publish
> rpm:publish
> universal:bintrayReleaseAllStaged
> debian:releaseAllStaged
> rpm:releaseAllStaged

Notes on batch

Testing if a variable is blank

if not defined _JAVACMD set _JAVACMD=java

Testing if an argument %0 is blank

if "%~0" == "" goto echolist_end

The above would work in case %0 contains either double quote (") or whitespace.