Skip to content

Commit eb0722f

Browse files
thisroddlfivefifty
authored andcommitted
Fix the Travis manual compiling script (#664)
1 parent e0977f7 commit eb0722f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/travis.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

33
if [ ${TRAVIS_OS_NAME} = "linux" ]; then
4-
julia -e 'Pkg.add("Documenter")';
5-
julia -e 'cd(Pkg.dir("ApproxFun")); include(joinpath("docs", "make.jl"))';
4+
julia -e 'using Pkg; Pkg.add("Documenter")';
5+
julia -e 'using Pkg; cd(Pkg.dir("ApproxFun")); include(joinpath("docs", "make.jl"))';
66
fi

0 commit comments

Comments
 (0)