Merge pull request #60 from ChaosExAnima/master
Updates CLI to work with OSX base64
This commit is contained in:
commit
b2f6a75c99
1 changed files with 10 additions and 2 deletions
|
@ -106,7 +106,11 @@ sendFiles()
|
||||||
zip -q -b /tmp/ -r "$zipPath" "$path"
|
zip -q -b /tmp/ -r "$zipPath" "$path"
|
||||||
zip -q -b /tmp/ "$zipPathTemp" "$zipPath"
|
zip -q -b /tmp/ "$zipPathTemp" "$zipPath"
|
||||||
|
|
||||||
hash=$(base64 -w 0 "$zipPathTemp")
|
if [[ $OS == "Mac" ]];then
|
||||||
|
hash=$(base64 -i "$zipPathTemp")
|
||||||
|
else
|
||||||
|
hash=$(base64 -w 0 "$zipPathTemp")
|
||||||
|
fi
|
||||||
|
|
||||||
# remove temporary temp file
|
# remove temporary temp file
|
||||||
rm "$zipPathTemp"
|
rm "$zipPathTemp"
|
||||||
|
@ -116,7 +120,11 @@ sendFiles()
|
||||||
# Create zip file temporarily to send file
|
# Create zip file temporarily to send file
|
||||||
zip -q -b /tmp/ "$zipPath" "$path"
|
zip -q -b /tmp/ "$zipPath" "$path"
|
||||||
|
|
||||||
hash=$(base64 -w 0 "$zipPath")
|
if [[ $OS == "Mac" ]];then
|
||||||
|
hash=$(base64 -i "$zipPath")
|
||||||
|
else
|
||||||
|
hash=$(base64 -w 0 "$zipPath")
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# remove temporary temp file
|
# remove temporary temp file
|
||||||
|
|
Loading…
Reference in a new issue