We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a1a8c3c commit ce5afc0Copy full SHA for ce5afc0
kscript
@@ -10,7 +10,7 @@ assertInPath(){ if [ -z "$(which $1)" ]; then echo "[ERROR] Could not locate '$1
10
trim() { while read -r line; do echo "$line"; done; }
11
12
## pad version with 0s. From https://stackoverflow.com/questions/18668556/comparing-numbers-in-bash
13
-function pad_version { printf "%03d" $(echo "$1" | tr '.' ' '); }
+function pad_version { printf "%03d%03d%03d" $(echo "$1" | tr '.' ' '); }
14
15
16
assertInPath kotlinc
0 commit comments