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 } # --------------------------