summaryrefslogtreecommitdiff
path: root/auto/create.sh
diff options
context:
space:
mode:
Diffstat (limited to 'auto/create.sh')
-rwxr-xr-xauto/create.sh4
1 files changed, 2 insertions, 2 deletions
diff --git a/auto/create.sh b/auto/create.sh
index 568c929..7640e3d 100755
--- a/auto/create.sh
+++ b/auto/create.sh
@@ -3,10 +3,10 @@ read -p "package name> " name
repo=$(ls repo/ | fzf --prompt="repo> ")
read -p "package version> " version
read -p "description> " desc
-deps=$(find repo -type f | xargs -I % basename % .xibuild | fzf -m --prompt="dependencies> " | tr '\n' ' ')
+deps=$(find repo -type f | sed "s/.xibuild//g" | rev | cut -f1 -d/ | rev |fzf -m --prompt="dependencies> " | tr '\n' ' ')
read -p "source url> " url
read -p "additional urls> " additional
-type=$(find ./templates -type f | xargs -I % basename % .xibuild | fzf --prompt="build type> ")
+type=$(find ./templates -type f | sed "s/.xibuild//g" | rev | cut -f1 -d/ | rev | fzf --prompt="build type> ")
clear
echo Name: $name