-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.sh
executable file
·54 lines (48 loc) · 1.58 KB
/
package.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
set -eu
############################################################
# Some defaults
############################################################
executable=SwiftLambdaAPI
############################################################
# Help #
############################################################
Help()
{
# Display Help
echo "Run within a Swift server side project to package an already built project as a zip for upload."
echo
echo "Syntax: ./package.sh [-n|h]"
echo "options:"
echo "n Sets the name of the project to package."
echo "h Print this Help."
echo
}
############################################################
############################################################
# Main program #
############################################################
############################################################
############################################################
# Process the input options. Add options as needed. #
############################################################
# Get the options
while getopts ":n:h" option; do
case $option in
h) # display Help
Help
exit;;
n) # set name
executable=${OPTARG};;
\?) # Invalid option
echo "Error: Invalid option"
exit;;
esac
done
target=.build/lambda/${executable}
rm -rf "$target"
mkdir -p "$target"
cp ".build/release/$executable" "$target/"
cd "$target"
ln -s "$executable" "bootstrap"
zip --symlinks lambda.zip *