Vmeda.Online/scripts/build.sh

24 lines
499 B
Bash
Raw Permalink Normal View History

2021-02-25 14:44:00 +00:00
#!/bin/bash
source "scripts/functions.sh"
2023-06-27 12:51:23 +00:00
if [ -z "$GIT_TOKEN" ]; then
2021-02-25 14:44:00 +00:00
print_error "Env vars not correctly defined"
exit 1
fi
print_title "Run scripts"
2023-06-27 12:51:23 +00:00
git clone --depth 1 --single-branch --branch ionic5 https://"$GIT_TOKEN"@github.com/moodlemobile/apps-scripts.git ../scripts
2021-02-25 14:44:00 +00:00
cp ../scripts/*.sh scripts/
if [ ! -f scripts/platform.sh ]; then
print_error "Platform file not found"
exit 1
fi
print_title 'Platform Build'
./scripts/platform.sh
if [ $? -ne 0 ]; then
exit 1
fi