Skip to content

Commit f1a07b1

Browse files
authored
Merge pull request #539 from mjcheetham/deb-fix
Fix Debian package build script copy command
2 parents 5e27642 + c869c5b commit f1a07b1

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/linux/Packaging.Linux/build.sh

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -174,15 +174,11 @@ Description: Cross Platform Git Credential Manager Core command line utility.
174174
EOF
175175

176176
# Copy all binaries and shared libraries to target installation location
177-
cp -R "$PAYLOAD" "$INSTALL_TO" || exit 1
177+
cp -R "$PAYLOAD"/* "$INSTALL_TO" || exit 1
178178

179-
# Create symlinks
179+
# Create symlink
180180
ln -s -r "$INSTALL_TO/git-credential-manager-core" \
181181
"$LINK_TO/git-credential-manager-core" || exit 1
182-
ln -s -r "$INSTALL_TO/Atlassian.Bitbucket.UI" \
183-
"$LINK_TO/Atlassian.Bitbucket.UI" || exit 1
184-
ln -s -r "$INSTALL_TO/GitHub.UI" \
185-
"$LINK_TO/GitHub.UI" || exit 1
186182

187183
dpkg-deb --build "$DEBROOT" "$DEBPKG" || exit 1
188184

0 commit comments

Comments
 (0)