Skip to content

Commit

Permalink
fix: Resolve an issue with bash wildcard expansion in the install script
Browse files Browse the repository at this point in the history
  • Loading branch information
notheotherben committed Mar 20, 2024
1 parent fa7dca8 commit 28069a4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ trap 'rm -rf ${WORKDIR}' EXIT

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

mkdir -p "${WORKDIR}/on_boot.d"
Expand Down

0 comments on commit 28069a4

Please sign in to comment.