Skip to content

Commit

Permalink
fix(filesystem): remove additional trailing slash after $TMPDIR
Browse files Browse the repository at this point in the history
fixes #87
  • Loading branch information
JamieMason committed Feb 9, 2016
1 parent 0344ae7 commit 6b60e32
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion bin/imageOptimBashLib
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ STAT_BIN="/usr/bin/stat"

# {DirectoryPath} Where we'll copy all images to be processed, compared, then returned to their
# original locations.
TEMP_PATH="${TMPDIR}/imageoptim-cli"
TEMP_PATH="${TMPDIR}imageoptim-cli"

# {FilePath} A list of all images we'll be operating on.
INDEX_FILE="${TEMP_PATH}/index.txt"
Expand Down
2 changes: 1 addition & 1 deletion src/imageOptimBashLib
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ STAT_BIN="/usr/bin/stat"

# {DirectoryPath} Where we'll copy all images to be processed, compared, then returned to their
# original locations.
TEMP_PATH="${TMPDIR}/imageoptim-cli"
TEMP_PATH="${TMPDIR}imageoptim-cli"

# {FilePath} A list of all images we'll be operating on.
INDEX_FILE="${TEMP_PATH}/index.txt"
Expand Down

0 comments on commit 6b60e32

Please sign in to comment.