Fixed script paths to unify directory structure
Browse files- Changed script paths in docker-entrypoint.sh and restic-start.sh from "scripts" to "script" to ensure consistency and simplify directory structure.
- docker-entrypoint.sh +1 -1
- scripts/start/restic-start.sh +1 -1
docker-entrypoint.sh
CHANGED
|
@@ -18,7 +18,7 @@ get_service_name() {
|
|
| 18 |
}
|
| 19 |
|
| 20 |
# Define start directory path
|
| 21 |
-
start_dir="
|
| 22 |
|
| 23 |
# Function to start persistence service synchronously (BLOCKING)
|
| 24 |
start_persistence_service() {
|
|
|
|
| 18 |
}
|
| 19 |
|
| 20 |
# Define start directory path
|
| 21 |
+
start_dir="script/start"
|
| 22 |
|
| 23 |
# Function to start persistence service synchronously (BLOCKING)
|
| 24 |
start_persistence_service() {
|
scripts/start/restic-start.sh
CHANGED
|
@@ -161,7 +161,7 @@ init_repository() {
|
|
| 161 |
find_backup_script() {
|
| 162 |
local script_paths=(
|
| 163 |
"$(dirname "$0")/../utils/restic-backup.sh"
|
| 164 |
-
"./
|
| 165 |
"./restic-backup.sh"
|
| 166 |
)
|
| 167 |
|
|
|
|
| 161 |
find_backup_script() {
|
| 162 |
local script_paths=(
|
| 163 |
"$(dirname "$0")/../utils/restic-backup.sh"
|
| 164 |
+
"./script/utils/restic-backup.sh"
|
| 165 |
"./restic-backup.sh"
|
| 166 |
)
|
| 167 |
|