From 31e1bb5199ddd9748d9881d14fcc9ea5cbe1b3ba Mon Sep 17 00:00:00 2001 From: Flori Gee Date: Thu, 17 Apr 2025 09:40:23 +0200 Subject: [PATCH 1/2] chore: bump runtime to gnome 49 --- sh.loft.devpod.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sh.loft.devpod.yaml b/sh.loft.devpod.yaml index b00114a..ac56e18 100644 --- a/sh.loft.devpod.yaml +++ b/sh.loft.devpod.yaml @@ -1,7 +1,7 @@ id: sh.loft.devpod runtime: org.gnome.Platform -runtime-version: '47' +runtime-version: '49' sdk: org.gnome.Sdk command: "sh.loft.devpod" From 572535aca75de50cc427781e278454dabf7944e4 Mon Sep 17 00:00:00 2001 From: Jakob Tinhofer <65621944+JakobTinhofer@users.noreply.github.com> Date: Tue, 30 Sep 2025 14:03:13 +0000 Subject: [PATCH 2/2] fix incorrect shebang will cause multiple syntax errors when running in sh only. The new shebang ensures it is run with full bash support --- devpod-wrapper | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/devpod-wrapper b/devpod-wrapper index dd79c45..5b1d143 100644 --- a/devpod-wrapper +++ b/devpod-wrapper @@ -1,4 +1,4 @@ -#!/bin/sh +#!/usr/bin/env bash # Parse the env var DEVPOD_ADDITIONAL_ENV_VARS set by the desktop application when calling the CLI to propogate env vars back to the host from the sandbox function env_to_args() { @@ -43,4 +43,4 @@ else fi # We need to have it into this path so that the host is able to open it with flatpak-spawn -/usr/bin/flatpak-spawn $(env_to_args) --host "${XDG_DATA_HOME}/devpod-cli" "$@" \ No newline at end of file +/usr/bin/flatpak-spawn $(env_to_args) --host "${XDG_DATA_HOME}/devpod-cli" "$@"