6 lines
105 B
Bash
6 lines
105 B
Bash
|
#!/bin/bash
|
||
|
set -euo pipefail
|
||
|
|
||
|
# Update git repo
|
||
|
git_update.sh -b sale -d "$HTTP_DIR" "$GIT_SOURCE_REPO"
|