From 0e55a43863af909aa238ccb7728466d784e6607e Mon Sep 17 00:00:00 2001 From: Kiana Sheibani Date: Sun, 28 Jul 2024 06:35:26 -0400 Subject: [PATCH] fix(fish): fix improper prompt --- fish/nixpkgs/soe | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/fish/nixpkgs/soe b/fish/nixpkgs/soe index 23d46ae..ae66188 100755 --- a/fish/nixpkgs/soe +++ b/fish/nixpkgs/soe @@ -1,7 +1,6 @@ #!/usr/bin/env fish -echo -n "Primes up to: " -read -P "" num +read -P "Primes up to: " num echo set nums (seq 2 $num)[..-2]