Skip to content

Commit

Permalink
Fixed mod
Browse files Browse the repository at this point in the history
  • Loading branch information
Stanislas Polu committed Nov 18, 2014
1 parent 927f3cd commit ebabb81
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions scripts/bootstrap.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
* @log:
* - 2014-10-16 spolu Creation
*/
"use strict"

var async = require('async');
var mkdirp = require('mkdirp');
Expand Down Expand Up @@ -142,7 +141,7 @@ var install_thrust = function(force, cb_) {
function(cb_) {
if(os.platform() === 'linux') {
var exec_path = path.join(THRUST_PATH, 'thrust_shell');
fs.chmod(exec_path, 755, cb_);
fs.chmod(exec_path, 0755, cb_);
}
else {
return cb_();
Expand Down

0 comments on commit ebabb81

Please sign in to comment.