Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,10 @@ jobs:
for dir in try-*; do
if [ -d "$dir" ]; then
chmod +x "$dir/try"
tar -czf "${dir}.tar.gz" -C "$dir" "try"
# Rename from arch-os (x86_64-linux) to os-arch (linux-x86_64) format
# to match README documentation
new_name=$(echo "$dir" | sed 's/try-\(.*\)-\(.*\)/try-\2-\1/')
tar -czf "${new_name}.tar.gz" -C "$dir" "try"
fi
done
ls -la *.tar.gz
Expand Down
10 changes: 4 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,15 +30,13 @@ Instantly navigate through all your experiment directories with:
curl -sL https://github.com/tobi/try-cli/releases/latest/download/try-linux-x86_64.tar.gz | tar xz
sudo mv try /usr/local/bin/

# macOS (Intel)
curl -sL https://github.com/tobi/try-cli/releases/latest/download/try-darwin-x86_64.tar.gz | tar xz
sudo mv try /usr/local/bin/

# macOS (Apple Silicon)
curl -sL https://github.com/tobi/try-cli/releases/latest/download/try-darwin-aarch64.tar.gz | tar xz
# Linux aarch64
curl -sL https://github.com/tobi/try-cli/releases/latest/download/try-linux-aarch64.tar.gz | tar xz
sudo mv try /usr/local/bin/
```

> **macOS users**: Pre-built binaries for macOS are not currently available. Please use [Nix](#nix) or [build from source](#build-from-source) instead.

### Shell integration

```bash
Expand Down