This repository has been archived on 2025-02-26. You can view files and clone it, but cannot push or open issues or pull requests.
Files
carnetdejeu-crystal/deploy.sh

16 lines
213 B
Bash
Executable File

#!/usr/bin/env bash
help() {
echo "Usage: ./$(basename $0) [destination]"
}
if [[ $* < 2 ]] ; then
echo "No destination given"
help
exit 1
fi
rsync -avP --include-from=filesToDeploy.txt . $1
exit 0