Skip to content

Commit d274be3

Browse files
author
Kristan Kenney
committed
Remove trailing slashes from path names
1 parent e6de5b2 commit d274be3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

bin/v-update-sys-hestia-git

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ download_file() {
5050
}
5151

5252
# Set compiling directory
53-
BUILD_DIR='/tmp/hestiacp-src/'
54-
DEB_DIR="$BUILD_DIR/debs/"
53+
BUILD_DIR='/tmp/hestiacp-src'
54+
DEB_DIR="$BUILD_DIR/debs"
5555
INSTALL_DIR='/usr/local/hestia'
56-
ARCHIVE_DIR="${BUILD_DIR}/archive/"
56+
ARCHIVE_DIR="${BUILD_DIR}/archive"
5757

5858
# Set command variables
5959
branch=$1

src/hst_autocompile.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,11 +58,11 @@ download_file() {
5858
}
5959

6060
# Set compiling directory
61-
BUILD_DIR='/tmp/hestiacp-src/'
62-
DEB_DIR="$BUILD_DIR/debs/"
61+
BUILD_DIR='/tmp/hestiacp-src'
62+
DEB_DIR="$BUILD_DIR/debs"
6363
INSTALL_DIR='/usr/local/hestia'
6464
SRC_DIR="$(cd "$(dirname "$0")/.." && pwd)"
65-
ARCHIVE_DIR="$SRC_DIR/src/archive/"
65+
ARCHIVE_DIR="$SRC_DIR/src/archive"
6666

6767
# Set command variables
6868
if [ ! -z "$2" ]; then

0 commit comments

Comments
 (0)