@simplehomelab/deployrr 6.0.36 → 6.0.37
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.
- package/bin/deployrr-init.sh +1 -0
- package/package.json +3 -2
- package/version.txt +1 -0
package/bin/deployrr-init.sh
CHANGED
|
@@ -29,6 +29,7 @@ echo "📦 Installing app files..."
|
|
|
29
29
|
cp -r "$SCRIPT_DIR/apps/"* "$DEPLOYRR_DIR/apps/"
|
|
30
30
|
cp "$SCRIPT_DIR/latest-version" "$DEPLOYRR_DIR/" 2>/dev/null || true
|
|
31
31
|
cp "$SCRIPT_DIR/announcement" "$DEPLOYRR_DIR/" 2>/dev/null || true
|
|
32
|
+
cp "$SCRIPT_DIR/version.txt" "$DEPLOYRR_DIR/" 2>/dev/null || true
|
|
32
33
|
|
|
33
34
|
# Detect architecture
|
|
34
35
|
ARCH=$(uname -m)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@simplehomelab/deployrr",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.37",
|
|
4
4
|
"description": "Deployrr - Docker homelab deployment manager",
|
|
5
5
|
"bin": {
|
|
6
6
|
"deployrr": "./bin/deployrr-init.sh"
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
"apps/",
|
|
10
10
|
"bin/",
|
|
11
11
|
"latest-version",
|
|
12
|
-
"announcement"
|
|
12
|
+
"announcement",
|
|
13
|
+
"version.txt"
|
|
13
14
|
],
|
|
14
15
|
"keywords": ["docker", "homelab", "deployment", "compose"],
|
|
15
16
|
"author": "SimpleHomelab",
|
package/version.txt
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
6.0.37
|