diff --git a/build-relocatable-install.py b/build-relocatable-install.py
index 67ce9f749079df0bd76dd982d9512b26b5fd5ee3..a06f0b05032348bb3134feb8c30224d306c38a4d 100755
--- a/build-relocatable-install.py
+++ b/build-relocatable-install.py
@@ -93,10 +93,10 @@ PRIMARY_ARCH_DEPENDENCIES = {
 SCRIPTS = [
     'pressure-vessel-test-ui',
     'pressure-vessel-unruntime',
-    'pressure-vessel-wrap'
+    'pressure-vessel-wrap.sh'
 ]
 EXECUTABLES = [
-    'pressure-vessel-wrap-c'
+    'pressure-vessel-wrap'
 ]
 TOOLS = [
     'capsule-capture-libs',
diff --git a/meson.build b/meson.build
index c3b077f985c98748d073bf0a6db7aa5769b3646a..70f833b9e567b11a5066b7d43ec5d9d4c1822586 100644
--- a/meson.build
+++ b/meson.build
@@ -39,7 +39,7 @@ if version == 'auto'
 endif
 
 scripts = [
-  'pressure-vessel-wrap',
+  'pressure-vessel-wrap.sh',
   'pressure-vessel-test-ui',
   'pressure-vessel-unruntime',
 ]
@@ -201,7 +201,7 @@ configure_file(
 )
 
 executable(
-  'pressure-vessel-wrap-c',
+  'pressure-vessel-wrap',
   sources : [
     'src/glib-backports.c',
     'src/glib-backports.h',
diff --git a/pressure-vessel-test-ui b/pressure-vessel-test-ui
index f86b4dd043ef48913676bafc3d207c90916e56eb..6d5cf521ded4ee60dace3fe43a3bd0ef73515755 100755
--- a/pressure-vessel-test-ui
+++ b/pressure-vessel-test-ui
@@ -73,10 +73,11 @@ class Gui:
 
         row += 1
 
-        self.native_check = Gtk.CheckButton.new_with_label(
-            'Use native-code version of pressure-vessel-wrap'
+        self.script_check = Gtk.CheckButton.new_with_label(
+            'Use old shell script version of pressure-vessel-wrap'
         )
-        self.grid.attach(self.native_check, 1, row, 1, 1)
+        self.script_check.set_active(False)
+        self.grid.attach(self.script_check, 1, row, 1, 1)
 
         row += 1
 
@@ -114,8 +115,8 @@ class Gui:
 
     def run_cb(self, _ignored=None):
 
-        if self.native_check.get_active():
-            wrap = 'pressure-vessel-wrap-c'
+        if self.script_check.get_active():
+            wrap = 'pressure-vessel-wrap.sh'
         else:
             wrap = 'pressure-vessel-wrap'
 
diff --git a/pressure-vessel-unruntime b/pressure-vessel-unruntime
index 4c3556d45351e2b8134f456580424b1226858783..d8ee9b715d4cddc91100a4312466cf95ba5add55 100755
--- a/pressure-vessel-unruntime
+++ b/pressure-vessel-unruntime
@@ -100,8 +100,8 @@ if [ -n "${PRESSURE_VESSEL_WRAP_GUI+set}" ]; then
     exec "${here}/pressure-vessel-test-ui" ${options+"${options[@]}"} "$@"
 fi
 
-if [ -n "${PRESSURE_VESSEL_WRAP_NATIVE+set}" ]; then
-    exec "${here}/pressure-vessel-wrap-c" ${options+"${options[@]}"} "$@"
+if [ -n "${PRESSURE_VESSEL_WRAP_SHELL+set}" ]; then
+    exec "${here}/pressure-vessel-wrap.sh" ${options+"${options[@]}"} "$@"
 fi
 
 exec "$here/pressure-vessel-wrap" ${options+"${options[@]}"} "$@"
diff --git a/pressure-vessel-wrap b/pressure-vessel-wrap.sh
similarity index 100%
rename from pressure-vessel-wrap
rename to pressure-vessel-wrap.sh
diff --git a/t/relocatable-install.py b/t/relocatable-install.py
index 118b13dc5cbfb4a35fbd934666e8a58396e6752c..3f122c31cfc1d2fcf2db941ca91fb34ec1caabff 100755
--- a/t/relocatable-install.py
+++ b/t/relocatable-install.py
@@ -77,7 +77,7 @@ class TapTest:
 
 
 EXES = [
-    'pressure-vessel-wrap-c',
+    'pressure-vessel-wrap',
 ]
 WRAPPED = [
     'bwrap',
@@ -88,7 +88,7 @@ MULTIARCH = [
 ]
 SCRIPTS = [
     'pressure-vessel-unruntime',
-    'pressure-vessel-wrap',
+    'pressure-vessel-wrap.sh',
 ]
 LD_SO = [
     ('x86_64-linux-gnu', '/lib64/ld-linux-x86-64.so.2'),
diff --git a/t/shellcheck.sh b/t/shellcheck.sh
index f5e72ef97fbf8f6e5f1a208893696a03950bf2ae..2c25da90e05f478d5bc500da3928ab20aea5571f 100755
--- a/t/shellcheck.sh
+++ b/t/shellcheck.sh
@@ -37,6 +37,8 @@ cd "$G_TEST_SRCDIR"
 n=0
 for shell_script in \
         *.sh \
+        pressure-vessel-unruntime \
+        pressure-vessel-unruntime-test-ui \
         sysroot/*.sh \
         t/*.sh \
         ; do