From 8f6f2333af819f9a0205bc9b6d4c20e5beab9f1b Mon Sep 17 00:00:00 2001 From: Amitai Schleier Date: Mon, 5 Jun 2023 17:02:07 -0400 Subject: [PATCH 1/3] Mark omni-socat.exe executable. --- hack/ubuntu-bash.setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/ubuntu-bash.setup.sh b/hack/ubuntu-bash.setup.sh index d41e728..a7f0424 100644 --- a/hack/ubuntu-bash.setup.sh +++ b/hack/ubuntu-bash.setup.sh @@ -7,6 +7,7 @@ __get_omnisocat () { curl https://github.com/masahide/OmniSSHAgent/releases/latest/download/omni-socat.zip \ -sLo omni-socat.zip unzip -o omni-socat.zip -d $(dirname $OMNISOCATCMD) + chmod +x $OMNISOCATCMD rm omni-socat.zip } From bd9957c38dc91a3f5ef8a4d43ee27ee74d3c2da6 Mon Sep 17 00:00:00 2001 From: Amitai Schleier Date: Mon, 5 Jun 2023 17:03:34 -0400 Subject: [PATCH 2/3] Mark omni-socat.exe executable. --- hack/rocky-bash.setup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/rocky-bash.setup.sh b/hack/rocky-bash.setup.sh index e77dbdc..c0d049d 100644 --- a/hack/rocky-bash.setup.sh +++ b/hack/rocky-bash.setup.sh @@ -7,6 +7,7 @@ __get_omnisocat () { -sLo omni-socat.zip sudo dnf -y install unzip unzip -o omni-socat.zip -d $(dirname $OMNISOCATCMD) + chmod +x $OMNISOCATCMD rm omni-socat.zip } From 56508cb11208b118f519b28e849be99586e16f2a Mon Sep 17 00:00:00 2001 From: Amitai Schleier Date: Mon, 5 Jun 2023 17:03:52 -0400 Subject: [PATCH 3/3] Mark omni-socat.exe executable. --- hack/ubuntu-fish.setup.fish | 1 + 1 file changed, 1 insertion(+) diff --git a/hack/ubuntu-fish.setup.fish b/hack/ubuntu-fish.setup.fish index bb8c440..d068cfe 100644 --- a/hack/ubuntu-fish.setup.fish +++ b/hack/ubuntu-fish.setup.fish @@ -6,6 +6,7 @@ function __get_omnisocat curl https://github.com/masahide/OmniSSHAgent/releases/latest/download/omni-socat.zip \ -sLo omni-socat.zip unzip -o omni-socat.zip -d (dirname $OMNISOCATCMD) + chmod +x $OMNISOCATCMD rm omni-socat.zip end