14 lines
162 B
Bash
14 lines
162 B
Bash
#!/bin/sh
|
|
|
|
# Set verbose mode
|
|
set -x
|
|
|
|
# Stop executing after error
|
|
set -e
|
|
|
|
# Use working directory
|
|
cd /root/.cache/act/almouse/personalwebsite
|
|
|
|
# Run command
|
|
$*
|