Skip to content

Commit

Permalink
Fix shell script
Browse files Browse the repository at this point in the history
Address syntax error from the previous fix
  • Loading branch information
furgo16 authored and chennes committed Oct 3, 2024
1 parent d8c1d28 commit 5c8ccc1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion snap/snapcraft.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -256,7 +256,7 @@ parts:
mkdir -p /etc/xdg/qtchooser
cp "$kde_sdk_dir/etc/xdg/qtchooser/default.conf" "/etc/xdg/qtchooser/default.conf"
SHIBOKEN_BIN_PATH="/workspace/usr/bin/shiboken2"
if [ ! -e $SHIBOKEN_BIN_PATH ]
if [ ! -e $SHIBOKEN_BIN_PATH ]; then
mkdir -p "$(dirname "${SHIBOKEN_BIN_PATH}")"
ln -s /usr/bin/shiboken2 $SHIBOKEN_BIN_PATH
fi
Expand Down

0 comments on commit 5c8ccc1

Please sign in to comment.