mirror of
https://github.com/meganz/MEGAcmd
synced 2025-08-22 01:47:24 +00:00
6 lines
170 B
Bash
Executable File
6 lines
170 B
Bash
Executable File
#!/bin/bash
|
|
# This script triggers the build by touching `start`
|
|
set -ex
|
|
thisdir="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
|
touch $thisdir/start
|