mirror of
https://github.com/rclone/rclone
synced 2024-11-02 23:09:23 +01:00
32 lines
586 B
Bash
Executable File
32 lines
586 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
# This uses gox from https://github.com/mitchellh/gox
|
|
# Make sure you've run gox -build-toolchain
|
|
|
|
if [ "$1" == "" ]; then
|
|
echo "Syntax: $0 Version"
|
|
exit 1
|
|
fi
|
|
VERSION="$1"
|
|
|
|
rm -rf build
|
|
|
|
gox -output "build/{{.Dir}}-${VERSION}-{{.OS}}-{{.Arch}}/{{.Dir}}"
|
|
|
|
mv build/rclone-${VERSION}-darwin-amd64 build/rclone-${VERSION}-osx-amd64
|
|
mv build/rclone-${VERSION}-darwin-386 build/rclone-${VERSION}-osx-386
|
|
|
|
cd build
|
|
|
|
for d in `ls`; do
|
|
cp -a ../README.txt $d/
|
|
cp -a ../README.html $d/
|
|
cp -a ../rclone.1 $d/
|
|
zip -r9 $d.zip $d
|
|
rm -rf $d
|
|
done
|
|
|
|
cd ..
|