Skip to content

Commit b9aefec

Browse files
committed
feat: support other repository roots
1 parent ff36eda commit b9aefec

3 files changed

+3
-3
lines changed

ubuntu/install.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
REPOSITORY="https://raw.githubusercontent.com/criticalmanufacturing/install-scripts/main"
2+
REPOSITORY=${REPOSITORY:-"https://raw.githubusercontent.com/criticalmanufacturing/install-scripts/main"}
33

44
#read arguments
55
#while [ $# -gt 0 ]; do

ubuntu/portal/initializeInfrastructure.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
REPOSITORY="https://raw.githubusercontent.com/criticalmanufacturing/install-scripts/main"
3+
REPOSITORY=${REPOSITORY:-"https://raw.githubusercontent.com/criticalmanufacturing/install-scripts/main"}
44

55
while [[ "$#" -gt 0 ]]; do
66
case $1 in

ubuntu/portal/initializeInfrastructureFromTemplate.bash

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
REPOSITORY="https://raw.githubusercontent.com/criticalmanufacturing/install-scripts/main"
3+
REPOSITORY=${REPOSITORY:-"https://raw.githubusercontent.com/criticalmanufacturing/install-scripts/main"}
44

55
while [[ "$#" -gt 0 ]]; do
66
case $1 in

0 commit comments

Comments
 (0)