8
0
Просмотр исходного кода

Fixed path to utils/git module.

Maksymilian Barnaś 9 лет назад
Родитель
Сommit
80932afe00
2 измененных файлов с 2 добавлено и 2 удалено
  1. 1 1
      dev/tasks/exec/functions/git-commit.js
  2. 1 1
      dev/tasks/exec/functions/git-push.js

+ 1 - 1
dev/tasks/exec/functions/git-commit.js

@@ -5,7 +5,7 @@
 
 'use strict';
 
-const git = require( '../utils/git' );
+const git = require( '../../../utils/git' );
 
 /**
  * Adds only modified files to git repository and commits them with provided message.

+ 1 - 1
dev/tasks/exec/functions/git-push.js

@@ -5,7 +5,7 @@
 
 'use strict';
 
-const git = require( '../utils/git' );
+const git = require( '../../../utils/git' );
 
 /**
  * Pushes changes of current branch in repository to default origin.