Skip to content

Commit 2850802

Browse files
committed
Fix problems found by ShellCheck
See https://www.shellcheck.net/
1 parent 2b9a68b commit 2850802

File tree

3 files changed

+37
-31
lines changed

3 files changed

+37
-31
lines changed

.shellcheckrc

Whitespace-only changes.

.vscode/extensions.json

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
{
2+
"recommendations": [
3+
"timonwong.shellcheck"
4+
]
5+
}

code.sh

+32-31
Original file line numberDiff line numberDiff line change
@@ -22,40 +22,40 @@ verbose=false
2222
if [ -t 2 ] ; then
2323
verbose() {
2424
if $verbose ; then
25-
echo -e "\033[1m\033[34mtoolbox-vscode\033[0m: $@" 1>&2
25+
echo -e "\033[1m\033[34mtoolbox-vscode\033[0m: $*" 1>&2
2626
fi
2727
}
2828
info() {
29-
echo -e "\033[1m\033[34mtoolbox-vscode\033[0m: \033[1m$@\033[0m" 1>&2
29+
echo -e "\033[1m\033[34mtoolbox-vscode\033[0m: \033[1m$*\033[0m" 1>&2
3030
}
3131
else
3232
verbose() {
3333
if $verbose ; then
34-
echo -e "toolbox-vscode: $@" 1>&2
34+
echo -e "toolbox-vscode: $*" 1>&2
3535
fi
3636
}
3737
info() {
38-
echo -e "toolbox-vscode: $@" 1>&2
38+
echo -e "toolbox-vscode: $*" 1>&2
3939
}
4040
fi
4141

4242
path_remove() {
4343
# remove the argument from $PATH
4444
local -a path newpath
4545

46-
SAVEIFS=$IFS
46+
saveIFS=$IFS
4747
IFS=:
48-
read -a path <<<$PATH
48+
read -r -a path <<<"$PATH"
4949

5050
newpath=()
5151
for p in "${path[@]}" ; do
5252
if [[ "$p" != "$1" ]] ; then
53-
newpath+=($p)
53+
newpath+=("$p")
5454
fi
5555
done
5656

5757
PATH="${newpath[*]}"
58-
IFS=$SAFEIFS
58+
IFS=$saveIFS
5959
}
6060

6161
### Argument parsing
@@ -65,7 +65,7 @@ arg_index=0
6565
new_args=()
6666

6767
next_arg() {
68-
arg_index=$(($arg_index + 1))
68+
arg_index=$((arg_index + 1))
6969
}
7070

7171
copy_arg() {
@@ -192,8 +192,9 @@ if $add_new_window ; then
192192
fi
193193

194194
flatpak="flatpak-spawn --host flatpak"
195-
container_name="$(. /run/.containerenv && echo $name)"
196-
container_name_encoded=$(echo -n $container_name | od -t x1 -A none -v | tr -d ' \n')
195+
# shellcheck disable=SC1091,SC2154
196+
container_name="$(. /run/.containerenv && echo "$name")"
197+
container_name_encoded=$(echo -n "$container_name" | od -t x1 -A none -v | tr -d ' \n')
197198

198199
### Make sure that we have the Visual Studio Code Flatpak installed
199200

@@ -202,15 +203,14 @@ verbose "Checking if Visual Studio Code Flatpak is installed"
202203
if $flatpak list --app --columns=application | grep -q com.visualstudio.code ; then
203204
verbose "Visual Studio Code Flatpak is installed"
204205
else
205-
read -p "Visual Studio Code Flatpak is not installed. Install? (y/N) " install
206+
read -r -p "Visual Studio Code Flatpak is not installed. Install? (y/N) " install
206207
case "$install" in
207208
y|Y)
208209
if ! $flatpak remotes --columns=name | grep -q '^flathub$' ; then
209210
echo "No flathub remote to install from, see https://flathub.org/" 1>&2
210211
exit 1
211212
fi
212-
$flatpak install flathub com.visualstudio.code
213-
if [ "$?" != 0 ] ; then
213+
if ! $flatpak install flathub com.visualstudio.code; then
214214
echo "Installation failed" 1>&2
215215
exit 1
216216
fi
@@ -224,31 +224,31 @@ fi
224224
### Make sure that we have a podman wrapper configured
225225

226226
podman_wrapper="$HOME/.local/bin/podman-host"
227-
if [ ! -f $podman_wrapper ] ; then
227+
if [ ! -f "$podman_wrapper" ] ; then
228228
info "Creating wrapper script: $podman_wrapper"
229229

230-
cat > $podman_wrapper <<'EOF'
230+
cat > "$podman_wrapper" <<'EOF'
231231
#!/bin/bash
232232
exec flatpak-spawn --host podman "$@"
233233
EOF
234234
fi
235-
chmod a+x $podman_wrapper
235+
chmod a+x "$podman_wrapper"
236236

237237
settings_json="$HOME/.var/app/com.visualstudio.code/config/Code/User/settings.json"
238238

239-
if [ ! -f $settings_json ] ; then
239+
if [ ! -f "$settings_json" ] ; then
240240
info "Creating $settings_json"
241241

242-
mkdir -p $(dirname $settings_json)
243-
cat > $settings_json <<EOF
242+
mkdir -p "$(dirname "$settings_json")"
243+
cat > "$settings_json" <<EOF
244244
{
245245
"remote.containers.dockerPath": "$podman_wrapper"
246246
}
247247
EOF
248-
elif ! grep -q remote.containers.dockerPath $settings_json ; then
248+
elif ! grep -q remote.containers.dockerPath "$settings_json" ; then
249249
# Assume that if remote.containers.dockerPath is set, its set to something that works
250250
info "Editing $settings_json to set remote.containers.dockerPath"
251-
sed -i '1s@{@{\n "remote.containers.dockerPath": "'$podman_wrapper'",@' $settings_json
251+
sed -i '1s@{@{\n "remote.containers.dockerPath": "'"$podman_wrapper"'",@' "$settings_json"
252252
fi
253253

254254
### Make sure that we have a writeable-by-user /root/.vscode-server directory
@@ -258,13 +258,13 @@ if [ ! -w /root/.vscode-server ] ; then
258258
info "Creating /root/.vscode-server"
259259
sudo chmod a+x /root
260260
sudo mkdir -p /root/.vscode-server
261-
sudo chown $UID:$(id -g) /root/.vscode-server
261+
sudo chown $UID:"$(id -g)" /root/.vscode-server
262262
fi
263263

264264
### Make sure we have a visual-studio code configuration for this container
265265

266266
name_config="$HOME/.var/app/com.visualstudio.code/config/Code/User/globalStorage/ms-vscode-remote.remote-containers/nameConfigs/$container_name.json"
267-
if $toolbox_reset_configuration || [ ! -f $name_config ] ; then
267+
if $toolbox_reset_configuration || [ ! -f "$name_config" ] ; then
268268
# The reason for including $PATH in removeEnv is so that any path modifications
269269
# set up in ~/.bashrc / ~/.bash_profile are present in the environment where
270270
# vscode runs commands, not just in the interactive terminal. As a special case
@@ -275,8 +275,8 @@ if $toolbox_reset_configuration || [ ! -f $name_config ] ; then
275275
fi
276276

277277
info "Creating configuration for $container_name"
278-
mkdir -p "$(dirname $name_config)"
279-
cat > $name_config <<EOF
278+
mkdir -p "$(dirname "$name_config")"
279+
cat > "$name_config" <<EOF
280280
{
281281
// Support requested in https://github.com/microsoft/vscode-remote-release/issues/4053.
282282
// "name": "Toolbox $container_name",
@@ -288,7 +288,7 @@ if $toolbox_reset_configuration || [ ! -f $name_config ] ; then
288288
// This is whatever it was when the config was created
289289
"DISPLAY": "$DISPLAY",
290290
"LANG": "\${localEnv:LANG}",
291-
"PATH": "$path",
291+
"PATH": "$PATH",
292292
"SHELL": "$SHELL",
293293
"SSH_AUTH_SOCK": "$SSH_AUTH_SOCK",
294294
"TERM": "\${localEnv:TERM}",
@@ -340,7 +340,7 @@ fi
340340
# https://github.com/flathub/com.visualstudio.code/issues/210
341341

342342
verbose "Checking for running Visual Studio Code Flatpak"
343-
existing=$($flatpak ps --columns=instance,application | sort -nr | while read instance application ; do
343+
existing=$($flatpak ps --columns=instance,application | sort -nr | while read -r instance application ; do
344344
if [ "$application" == "com.visualstudio.code" ] ; then
345345
echo "$instance"
346346
break
@@ -351,10 +351,11 @@ if [ "$existing" = "" ] ; then
351351
verbose "No running Visual Studio Code Flatpak, will use 'flatpak run'"
352352
$verbose && set -x
353353
$flatpak run com.visualstudio.code \
354-
--remote attached-container+$container_name_encoded "${new_args[@]}"
354+
--remote attached-container+"$container_name_encoded" "${new_args[@]}"
355355
else
356356
verbose "Found running Visual Studio Code Flatpak, will use 'flatpak enter'"
357357
$verbose && set -x
358-
$flatpak enter $existing sh -c 'cd $0; DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$UID/bus DBUS_SYSTEM_BUS_ADDRESS=unix:path=/run/dbus/system_bus_socket exec "$@"' "$PWD" code \
359-
--remote attached-container+$container_name_encoded "${new_args[@]}"
358+
# shellcheck disable=SC2016
359+
$flatpak enter "$existing" sh -c 'cd $0; DBUS_SESSION_BUS_ADDRESS=unix:path=/run/user/$UID/bus DBUS_SYSTEM_BUS_ADDRESS=unix:path=/run/dbus/system_bus_socket exec "$@"' "$PWD" code \
360+
--remote attached-container+"$container_name_encoded" "${new_args[@]}"
360361
fi

0 commit comments

Comments
 (0)