Radish alpha
r
Radicle terminal user interface
Radicle
Git (anonymous pull)
Log in to clone via SSH
Fix rad proxy script
Erik Kundt committed 1 year ago
commit 4af18a47f846f61c6720cc54d5ce09b1c05d8ade
parent bc2378e18a148923839c352a34b10e0847c22c5c
2 files changed +10 -1
modified CHANGELOG.md
@@ -38,6 +38,10 @@
- Page size attribute from scrollable widgets
- Cutoff and footer attributes from table properties

+
### Fixed
+

+
- Broken positional argument passing in `rad.sh` proxy script
+

## [0.3.1] - 2024-06-11

### Added
modified scripts/rad.sh
@@ -26,6 +26,9 @@ if [[ "$1" == "patch" ]] || [[ "$1" == "issue" ]] || [[ "$1" == "inbox" ]]; then
            op=$(extract_operation $out)
            id=$(extract_id $out)
            
+
            echo $op
+
            echo $id
+
            
            rad $1 $op $id
        else
            # Run TUI
@@ -33,7 +36,9 @@ if [[ "$1" == "patch" ]] || [[ "$1" == "issue" ]] || [[ "$1" == "inbox" ]]; then
            { out=$(rad-tui $1 select $args 2>&1 >&3 3>&-); } 3>&1
            id=$(extract_id $out)
            
-
            rad $1 $2 $id
+
            args=("$@")
+
 
+
            rad $1 $2 $id ${args[@]:2}
        fi
    else
        rad $@