@@ -22,40 +22,40 @@ verbose=false
22
22
if [ -t 2 ] ; then
23
23
verbose () {
24
24
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
26
26
fi
27
27
}
28
28
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
30
30
}
31
31
else
32
32
verbose () {
33
33
if $verbose ; then
34
- echo -e " toolbox-vscode: $@ " 1>&2
34
+ echo -e " toolbox-vscode: $* " 1>&2
35
35
fi
36
36
}
37
37
info () {
38
- echo -e " toolbox-vscode: $@ " 1>&2
38
+ echo -e " toolbox-vscode: $* " 1>&2
39
39
}
40
40
fi
41
41
42
42
path_remove () {
43
43
# remove the argument from $PATH
44
44
local -a path newpath
45
45
46
- SAVEIFS =$IFS
46
+ saveIFS =$IFS
47
47
IFS=:
48
- read -a path <<< $PATH
48
+ read -r - a path <<< " $PATH"
49
49
50
50
newpath=()
51
51
for p in " ${path[@]} " ; do
52
52
if [[ " $p " != " $1 " ]] ; then
53
- newpath+=($p )
53
+ newpath+=(" $p " )
54
54
fi
55
55
done
56
56
57
57
PATH=" ${newpath[*]} "
58
- IFS=$SAFEIFS
58
+ IFS=$saveIFS
59
59
}
60
60
61
61
# ## Argument parsing
@@ -65,7 +65,7 @@ arg_index=0
65
65
new_args=()
66
66
67
67
next_arg () {
68
- arg_index=$(( $ arg_index + 1 ))
68
+ arg_index=$(( arg_index + 1 ))
69
69
}
70
70
71
71
copy_arg () {
@@ -192,8 +192,9 @@ if $add_new_window ; then
192
192
fi
193
193
194
194
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' )
197
198
198
199
# ## Make sure that we have the Visual Studio Code Flatpak installed
199
200
@@ -202,15 +203,14 @@ verbose "Checking if Visual Studio Code Flatpak is installed"
202
203
if $flatpak list --app --columns=application | grep -q com.visualstudio.code ; then
203
204
verbose " Visual Studio Code Flatpak is installed"
204
205
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
206
207
case " $install " in
207
208
y|Y)
208
209
if ! $flatpak remotes --columns=name | grep -q ' ^flathub$' ; then
209
210
echo " No flathub remote to install from, see https://flathub.org/" 1>&2
210
211
exit 1
211
212
fi
212
- $flatpak install flathub com.visualstudio.code
213
- if [ " $? " != 0 ] ; then
213
+ if ! $flatpak install flathub com.visualstudio.code; then
214
214
echo " Installation failed" 1>&2
215
215
exit 1
216
216
fi
224
224
# ## Make sure that we have a podman wrapper configured
225
225
226
226
podman_wrapper=" $HOME /.local/bin/podman-host"
227
- if [ ! -f $podman_wrapper ] ; then
227
+ if [ ! -f " $podman_wrapper " ] ; then
228
228
info " Creating wrapper script: $podman_wrapper "
229
229
230
- cat > $podman_wrapper << 'EOF '
230
+ cat > " $podman_wrapper " << 'EOF '
231
231
#!/bin/bash
232
232
exec flatpak-spawn --host podman "$@"
233
233
EOF
234
234
fi
235
- chmod a+x $podman_wrapper
235
+ chmod a+x " $podman_wrapper "
236
236
237
237
settings_json=" $HOME /.var/app/com.visualstudio.code/config/Code/User/settings.json"
238
238
239
- if [ ! -f $settings_json ] ; then
239
+ if [ ! -f " $settings_json " ] ; then
240
240
info " Creating $settings_json "
241
241
242
- mkdir -p $( dirname $settings_json )
243
- cat > $settings_json << EOF
242
+ mkdir -p " $( dirname " $settings_json " ) "
243
+ cat > " $settings_json " << EOF
244
244
{
245
245
"remote.containers.dockerPath": "$podman_wrapper "
246
246
}
247
247
EOF
248
- elif ! grep -q remote.containers.dockerPath $settings_json ; then
248
+ elif ! grep -q remote.containers.dockerPath " $settings_json " ; then
249
249
# Assume that if remote.containers.dockerPath is set, its set to something that works
250
250
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 "
252
252
fi
253
253
254
254
# ## Make sure that we have a writeable-by-user /root/.vscode-server directory
@@ -258,13 +258,13 @@ if [ ! -w /root/.vscode-server ] ; then
258
258
info " Creating /root/.vscode-server"
259
259
sudo chmod a+x /root
260
260
sudo mkdir -p /root/.vscode-server
261
- sudo chown $UID :$( id -g) /root/.vscode-server
261
+ sudo chown $UID :" $( id -g) " /root/.vscode-server
262
262
fi
263
263
264
264
# ## Make sure we have a visual-studio code configuration for this container
265
265
266
266
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
268
268
# The reason for including $PATH in removeEnv is so that any path modifications
269
269
# set up in ~/.bashrc / ~/.bash_profile are present in the environment where
270
270
# 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
275
275
fi
276
276
277
277
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
280
280
{
281
281
// Support requested in https://github.com/microsoft/vscode-remote-release/issues/4053.
282
282
// "name": "Toolbox $container_name ",
@@ -288,7 +288,7 @@ if $toolbox_reset_configuration || [ ! -f $name_config ] ; then
288
288
// This is whatever it was when the config was created
289
289
"DISPLAY": "$DISPLAY ",
290
290
"LANG": "\$ {localEnv:LANG}",
291
- "PATH": "$path ",
291
+ "PATH": "$PATH ",
292
292
"SHELL": "$SHELL ",
293
293
"SSH_AUTH_SOCK": "$SSH_AUTH_SOCK ",
294
294
"TERM": "\$ {localEnv:TERM}",
340
340
# https://github.com/flathub/com.visualstudio.code/issues/210
341
341
342
342
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
344
344
if [ " $application " == " com.visualstudio.code" ] ; then
345
345
echo " $instance "
346
346
break
@@ -351,10 +351,11 @@ if [ "$existing" = "" ] ; then
351
351
verbose " No running Visual Studio Code Flatpak, will use 'flatpak run'"
352
352
$verbose && set -x
353
353
$flatpak run com.visualstudio.code \
354
- --remote attached-container+$container_name_encoded " ${new_args[@]} "
354
+ --remote attached-container+" $container_name_encoded " " ${new_args[@]} "
355
355
else
356
356
verbose " Found running Visual Studio Code Flatpak, will use 'flatpak enter'"
357
357
$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[@]} "
360
361
fi
0 commit comments