Pipeline goes brrrrrrr

This commit is contained in:
2022-04-30 18:23:54 +03:00
parent 47e9db94ac
commit 469024c1e2
2 changed files with 4 additions and 4 deletions

View File

@@ -51,8 +51,8 @@ giteaDo -l|--list
* curl
* awk
* rofi
* pass
* rofi (Optional, copy paste the read lines to have to type the name)
* pass (Optional, paste plaintext token if you don't care about security)
* sed
* jq
* grep

View File

@@ -77,9 +77,9 @@ else
usage
;;
-c|--create)
read -p "Enter new repo's name: " name
read -p "Enter new repo's name (no spaces): " name
read -p "Enter new repo's description: " description
createRepo "$name" "$description"
createRepo "$name" "$description" | jq
;;
-d|--delete)
NAME="$(giteaDo -l | rofi -theme-str 'window {width: 400px; height: 200px;}' -dmenu -i -p 'Repo to delete?')"