You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: misc/build.func
+9-8Lines changed: 9 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -227,7 +227,7 @@ write_config() {
227
227
if whiptail --backtitle "Proxmox VE Helper Scripts" --defaultno --title "Write configfile" --yesno "Do you want to write the selections to a config file?" 10 60; then
228
228
FILEPATH="/opt/community-scripts/${NSAPP}.conf"
229
229
if [[ ! -f $FILEPATH ]]; then
230
-
cat <<EOF >"$FILEPATH"
230
+
cat <<EOF >"$FILEPATH"
231
231
# ${NSAPP} Configuration File
232
232
# Generated on $(date)
233
233
@@ -264,7 +264,7 @@ EOF
264
264
echo -e "${INFO}${BOLD}${RD}Configuration file already exists at ${FILEPATH}${CL}"
265
265
if whiptail --backtitle "Proxmox VE Helper Scripts" --defaultno --title "Overwrite configfile" --yesno "Do you want to overwrite the existing config file?" 10 60; then
266
266
rm -f "$FILEPATH"
267
-
cat <<EOF >"$FILEPATH"
267
+
cat <<EOF >"$FILEPATH"
268
268
# ${NSAPP} Configuration File
269
269
# Generated on $(date)
270
270
@@ -875,17 +875,18 @@ install_script() {
875
875
header_info
876
876
while true; do
877
877
878
-
CHOICE=$(whiptail --backtitle "Proxmox VE Helper Scripts" --title "SETTINGS" --menu "Choose an option:" \
878
+
TMP_CHOICE=$(whiptail --backtitle "[dev] Proxmox VE Helper Scripts" \
0 commit comments