commit a7c5fd7da7e3faec43d02990cb295a366ce8b7d0
parent 31de9b70fb547efc6a8f7cf9e203eb82c4824947
Author: Anders Damsgaard <andersd@riseup.net>
Date: Sat, 29 Apr 2017 22:53:12 -0400
fix checksum command which was previously escaped
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/test/vtk.jl b/test/vtk.jl
@@ -14,7 +14,7 @@ SeaIce.writeVTK(sim)
if Base.is_linux()
cmd = "sha256sum"
elseif Base.is_apple()
- cmd = "shasum -a 256"
+ cmd = ["shasum", "-a", "256"]
else
error("checksum verification of VTK file not supported on this platform")
end