'Generic Commit'
Some checks failed
Build-Test-Publish / build (push) Failing after 20s

This commit is contained in:
Your Name 2025-06-22 10:26:48 +12:00
parent 4e0c476ccb
commit edef18ef5c

View File

@ -21,10 +21,13 @@ GETPKG="${SCRIPT_DIR}/../getpkg/output/getpkg"
"${SOS}" upload "getbin.xyz" "${SCRIPT_DIR}/whatsdirty.sh" "whatsdirty:latest"
"${SOS}" upload "getbin.xyz" "${SCRIPT_DIR}/install.sh" "whatsdirty-install:latest"
# publish the tool
mkdir -p "${SCRIPT_DIR}/tool"
cp "${SCRIPT_DIR}/whatsdirty.sh" "${SCRIPT_DIR}/tool"
ln -s "${SCRIPT_DIR}/tool/whatsdirty.sh" "${SCRIPT_DIR}/tool/whatsdirty"
# publish the tool\
TOOLDIR="${SCRIPT_DIR}/tool"
mkdir -p "${TOOLDIR}"
cp "${SCRIPT_DIR}/whatsdirty.sh" "${TOOLDIR}"
ln -s "${TOOLDIR}/whatsdirty.sh" "${TOOLDIR}/whatsdirty"
# publish universal tool.
#"${GETPKG}" publish "${SCRIPT_DIR}/tool" "whatsdirty"
"${GETPKG}" publish "${TOOLDIR}" "whatsdirty"
rm -rf "${TOOLDIR}"