Commit e9ef68c0 authored by Pedro Eduardo Trujillo's avatar Pedro Eduardo Trujillo
Browse files

Mueve scripts usados por grunt a su directorio

Originalmente, estos scripts eran lanzados manualmente, de ahí su
ubicación en la raíz. Con el tiempo, pasaron a ser invocados solamente
desde tareas Grunt, por lo que se mueven a su contexto.
parent 448ad135
Loading
Loading
Loading
Loading
+0 −0

File moved.

+1 −1
Original line number Diff line number Diff line
@@ -10,7 +10,7 @@ module.exports = function(grunt) {
			},
			command: function() {

				return 'scripts/addModules.sh';
				return 'grunt/scripts/addModules.sh';
			}
		});

+1 −1
Original line number Diff line number Diff line
@@ -12,7 +12,7 @@ module.exports = function(grunt) {
			},
			command: function() {

				var cmd = 'scripts/removeModules.sh';
				var cmd = 'grunt/scripts/removeModules.sh';

				if (module) {
					cmd += ' ' + module;
Loading