Skip to content

Commit

Permalink
fixed a build issue
Browse files Browse the repository at this point in the history
  • Loading branch information
louisponet committed Oct 31, 2017
1 parent 12f47fb commit f25d634
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ git:
## (tests will run but not make your overall status red)
matrix:
allow_failures:
- julia: nightly
# - julia: nightly

## uncomment and modify the following lines to manually install system packages
#addons:
Expand Down
4 changes: 2 additions & 2 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ environment:
## (tests will run but not make your overall status red)
#matrix:
# allow_failures:
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
- JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x86/julia-latest-win32.exe"
# - JULIA_URL: "https://julialangnightlies-s3.julialang.org/bin/winnt/x64/julia-latest-win64.exe"

branches:
only:
Expand Down
1 change: 1 addition & 0 deletions src/file_processing.jl
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ function read_qe_bands_file(filename::String, T=Float32)
k_points_cart = Array{Array{T,1},1}()
k_points_cryst = Array{Array{T,1},1}()
k_eigvals = Array{Array{T,1},1}()
prefac = T(1)
while !eof(f)
line = readline(f)
if contains(line,"celldm(1)")
Expand Down

0 comments on commit f25d634

Please sign in to comment.