Commit cc998495 authored by system_user's avatar system_user

fixing the chmod permissions issue. and now it's just a comment to the user

parent dcf36ea6
......@@ -17,6 +17,7 @@ class Node < Package
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
#Fix Permissiongs for -g installs of node packages
system "sudo chown -R chronos /usr/local/lib/node_modules"
echo "Now to get npm -g working you should type this"
echo "sudo chown -R chronos /usr/local/lib/node_modules"
end
end
......@@ -18,6 +18,7 @@ class Node_current < Package
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
#Fix Permissiongs for -g installs of node packages
system "sudo chown -R chronos /usr/local/lib/node_modules"
echo "Now to get npm -g working you should type this"
echo "sudo chown -R chronos /usr/local/lib/node_modules"
end
end
......@@ -16,7 +16,9 @@ class Node_stable < Package
def self.install
system "make", "DESTDIR=#{CREW_DEST_DIR}", "install"
#Fix Permissiongs for -g installs of node packages
system "sudo chown -R chronos /usr/local/lib/node_modules"
echo "Now to get npm -g working you should type this"
echo "sudo chown -R chronos /usr/local/lib/node_modules"
echo "also..."
echo "node_stable has been depricated. Please install node_current to get the latest changes"
end
end
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment