Skip to content
This repository has been archived by the owner on Sep 5, 2020. It is now read-only.

Commit

Permalink
fixed shasum
Browse files Browse the repository at this point in the history
  • Loading branch information
frozeman committed Jun 24, 2016
1 parent c1319bd commit 36c70f4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gulpfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ gulp.task('getChecksums', [], function(done) {

// spit out sha256 checksums
var fileName = path.replace('./dist_'+ type +'/', '');
var sha = spawn('shasum -a 256', [path]);
var sha = spawn('shasum', ['-a','256',path]);
sha.stdout.on('data', function(data){
console.log('SHA256 '+ fileName +': '+ data.toString().replace(path, ''));
});
Expand Down

0 comments on commit 36c70f4

Please sign in to comment.