diff options
author | Jan Alexander Steffens (heftig) <jan.steffens@gmail.com> | 2018-06-19 22:33:57 +0200 |
---|---|---|
committer | Allan McRae <allan@archlinux.org> | 2018-08-10 04:37:20 +0200 |
commit | e4be26b7327d8378735205ebedfc9718fb6fbba1 (patch) | |
tree | ee7df1988058c3e7066f278c6486cdcc6b044623 /scripts/libmakepkg/util | |
parent | 4e83abaae51c82ce6571450fb3ed9e2e71175b68 (diff) | |
download | pacman-e4be26b7327d8378735205ebedfc9718fb6fbba1.tar.gz pacman-e4be26b7327d8378735205ebedfc9718fb6fbba1.tar.xz |
scripts: Remove trailing semicolons
Signed-off-by: Allan McRae <allan@archlinux.org>
Diffstat (limited to 'scripts/libmakepkg/util')
-rw-r--r-- | scripts/libmakepkg/util/util.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/libmakepkg/util/util.sh.in b/scripts/libmakepkg/util/util.sh.in index 0fb89186..c2f5897e 100644 --- a/scripts/libmakepkg/util/util.sh.in +++ b/scripts/libmakepkg/util/util.sh.in @@ -51,7 +51,7 @@ is_array() { # Canonicalize a directory path if it exists canonicalize_path() { - local path="$1"; + local path="$1" if [[ -d $path ]]; then ( |