Skip to content
This repository was archived by the owner on Nov 23, 2018. It is now read-only.

Commit 94f9a92

Browse files
author
Evert Lammerts
committed
removed backticks and replaced pwd
1 parent 8ba5841 commit 94f9a92

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,5 +19,5 @@ script:
1919
- go get -d -t -v ./...
2020
- go build -v ./...
2121
- go test -v ./...
22-
- test -z "`gofmt -d .`"
22+
- test -z "$(gofmt -d .)"
2323
- if [[ $TRAVIS_SECURE_ENV_VARS = "true" ]]; then bash ./.travis/test-coverage.sh; fi

.travis/test-coverage.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22

3-
PROFILE_OUT=`pwd`/profile.out
4-
ACC_OUT=`pwd`/acc.out
3+
PROFILE_OUT=$PWD/profile.out
4+
ACC_OUT=$PWD/acc.out
55

66
testCover() {
77
# set the return value to 0 (succesful)

0 commit comments

Comments
 (0)