12 lines
124 B
Bash
Executable File
12 lines
124 B
Bash
Executable File
#!/bin/bash -e
|
|
set -e
|
|
|
|
source ./travis/setup_variables.sh
|
|
|
|
cd ./scripts/
|
|
|
|
./deploy_snapshot.sh
|
|
|
|
echo "Build success"
|
|
exit 0
|