Skip to content
This repository was archived by the owner on May 6, 2025. It is now read-only.

Commit 75b124c

Browse files
authored
Fix linting issues (#299)
1 parent d7d0424 commit 75b124c

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,8 @@ export PACKER_LOG=${PACKER_LOG:-0}
1919
# Use /var/tmp as temporary directory for Packer, because export of VM images can consume lot of disk space
2020
export TMPDIR=${TMPDIR:-/var/tmp}
2121

22-
readonly PROGNAME=$(basename "$0")
22+
PROGNAME=$(basename "$0")
23+
readonly PROGNAME
2324
readonly ARGS=$*
2425

2526
usage() {

upload_box_to_vagrantcloud.sh

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ set -eu -o pipefail
44

55
export BOX_VERSION=${BOX_VERSION:-$(date +%Y%m%d).01}
66

7-
readonly PROGNAME=$(basename "$0")
7+
PROGNAME=$(basename "$0")
8+
readonly PROGNAME
89
readonly ARGS=$*
910

1011

0 commit comments

Comments
 (0)