Skip to content

Commit 918fbaf

Browse files
committed
Fix install script URLs for repository structure
The repository has code in dbarena/ subdirectory, so update URLs: - https://raw.githubusercontent.com/514-labs/dbareana/main/dbarena/install.sh - https://raw.githubusercontent.com/514-labs/dbareana/main/dbarena/uninstall.sh Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent fa7bdef commit 918fbaf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

dbarena/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ dbarena provides instant database environments for testing, development, and exp
2222
Install dbarena with a single command:
2323

2424
```bash
25-
curl -sSL https://raw.githubusercontent.com/514-labs/dbareana/main/install.sh | bash
25+
curl -sSL https://raw.githubusercontent.com/514-labs/dbareana/main/dbarena/install.sh | bash
2626
```
2727

2828
This will:
@@ -66,7 +66,7 @@ sudo cp target/release/dbarena /usr/local/bin/
6666
### Uninstall
6767

6868
```bash
69-
curl -sSL https://raw.githubusercontent.com/514-labs/dbareana/main/uninstall.sh | bash
69+
curl -sSL https://raw.githubusercontent.com/514-labs/dbareana/main/dbarena/uninstall.sh | bash
7070
```
7171

7272
Or manually:

dbarena/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22
# dbarena installation script
3-
# Usage: curl -sSL https://raw.githubusercontent.com/514-labs/dbareana/main/install.sh | bash
3+
# Usage: curl -sSL https://raw.githubusercontent.com/514-labs/dbareana/main/dbarena/install.sh | bash
44

55
set -e
66

0 commit comments

Comments
 (0)