mirror of
https://github.com/DarkFlippers/unleashed-firmware
synced 2024-11-24 05:23:06 +00:00
10 lines
102 B
Bash
10 lines
102 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "$1" ]; then
|
||
|
bash
|
||
|
else
|
||
|
echo "Running $1"
|
||
|
set -ex
|
||
|
bash -c "$1"
|
||
|
fi
|