@simplehomelab/deployrr 6.0.4-rc3 → 6.0.5-rc3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,8 +43,13 @@ if curl -fsSL -o "$DEPLOYRR_DIR/$BINARY" \
43
43
  "https://files.deployrr.app/binary/${VERSION}/${ARCH}"; then
44
44
  chmod +x "$DEPLOYRR_DIR/$BINARY"
45
45
  echo ""
46
- echo "✅ Deployrr v${VERSION} installed to $DEPLOYRR_DIR/$BINARY"
47
- echo " Run: sudo $DEPLOYRR_DIR/$BINARY"
46
+ if ln -sf "$DEPLOYRR_DIR/$BINARY" "/usr/local/bin/deployrr"; then
47
+ echo " Deployrr v${VERSION} installed to $DEPLOYRR_DIR/$BINARY"
48
+ echo " Run: sudo deployrr"
49
+ else
50
+ echo "✅ Deployrr v${VERSION} installed to $DEPLOYRR_DIR/$BINARY"
51
+ echo " Run: sudo $DEPLOYRR_DIR/$BINARY"
52
+ fi
48
53
  else
49
54
  echo "❌ Download failed. Check your internet connection."
50
55
  exit 1
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@simplehomelab/deployrr",
3
- "version": "6.0.4-rc3",
3
+ "version": "6.0.5-rc3",
4
4
  "description": "Deployrr - Docker homelab deployment manager",
5
5
  "bin": {
6
6
  "deployrr": "./bin/deployrr-init.sh"