From e0457fa639910dd06c5ecd260a1dd01f6ab07a67 Mon Sep 17 00:00:00 2001 From: Matt C Date: Thu, 7 Oct 2021 23:58:35 -0400 Subject: [PATCH] whoopsie forgot `tmp` is a root folder also --- citrine.internal.sh | 6 +++--- continue.sh | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/citrine.internal.sh b/citrine.internal.sh index a52657b..c21d2a0 100755 --- a/citrine.internal.sh +++ b/citrine.internal.sh @@ -28,9 +28,9 @@ dump() { msgdat="" msgbox(){ - dialog --title Citrine --inputbox "$@" 10 80 2>tmp - msgdat=$(cat tmp) - rm tmp + dialog --title Citrine --inputbox "$@" 10 80 2>tmp.citrine + msgdat=$(cat tmp.citrine) + rm tmp.citrine } # -------------------------- diff --git a/continue.sh b/continue.sh index a6f7e74..6398897 100755 --- a/continue.sh +++ b/continue.sh @@ -28,9 +28,9 @@ dump() { msgdat="" msgbox(){ - dialog --title Citrine --inputbox "$@" 10 80 2>tmp - msgdat=$(cat tmp) - rm tmp + dialog --title Citrine --inputbox "$@" 10 80 2>tmp.citrine + msgdat=$(cat tmp.citrine) + rm tmp.citrine } # --------------------------