Skip to content
This repository has been archived by the owner on Jun 1, 2021. It is now read-only.

Commit

Permalink
Use bash execution instead of backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
joelpurra committed Aug 18, 2014
1 parent cc17b39 commit b72c9cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/aggregate/all.sh
@@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -e

TEMPORARY=`mktemp -d "$(basename "${BASH_SOURCE}").XXXXXXXX"`
TEMPORARY=$(mktemp -d "$(basename "${BASH_SOURCE}").XXXXXXXX")
TEMPOUT1="$TEMPORARY/aggregate.merge.1.json"
TEMPOUT2="$TEMPORARY/aggregate.merge.2.json"
trap 'rm -rf "$TEMPORARY"' EXIT
Expand Down

0 comments on commit b72c9cd

Please sign in to comment.