diff options
author | heqnx <root@heqnx.com> | 2025-05-17 15:34:43 +0300 |
---|---|---|
committer | heqnx <root@heqnx.com> | 2025-05-17 15:34:43 +0300 |
commit | 50cf77b907c02527b2321701ed745774e45f807e (patch) | |
tree | 6386a8071cb09d9ad86481aea16c54a0ed3fdc81 /build.sh | |
parent | 3fa65111a3862358f0f9f9191972d2a8c259dbff (diff) | |
download | SharpRIDHijack-main.tar.gz SharpRIDHijack-main.zip |
Diffstat (limited to 'build.sh')
-rwxr-xr-x | build.sh | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -1,6 +1,11 @@ #!/bin/bash set -e +if ! command -v docker; then + printf "%s\n" "[err] docker not found" + exit 1 +fi + repo_name=$( basename -s .git $(git remote get-url origin) ) docker run --rm -it -v $(pwd):/app -w /app mono:latest bash -c ' |