Skip to content

Commit

Permalink
fix: Further improvements to packaging script
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Mar 20, 2024
1 parent 28069a4 commit 829e427
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,17 @@ trap 'rm -rf ${WORKDIR}' EXIT

echo "Preparing temporary build directory"
mkdir -p "${WORKDIR}/tailscale"
cp -R "${SOURCE}/package" "${WORKDIR}/tailscale"
cp -R "${SOURCE}/package/" "${WORKDIR}/tailscale"
cp "${SOURCE}/LICENSE" "${WORKDIR}/tailscale/LICENSE"

mkdir -p "${WORKDIR}/on_boot.d"
mv "${WORKDIR}/tailscale/on-boot.sh" "${WORKDIR}/on_boot.d/10-tailscaled.sh"

echo ""
echo "Package Contents:"
cd "$WORKDIR"
ls -l ./*
echo ""

echo "Building tailscale-udm package"
mkdir -p "${DEST}"
Expand Down

0 comments on commit 829e427

Please sign in to comment.