Skip to content

Commit

Permalink
Plugin task: Made symlinks to work also on Windows.
Browse files Browse the repository at this point in the history
  • Loading branch information
mlewand committed Nov 3, 2014
1 parent 76a56d8 commit 1cbc97a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dev/tasks/plugin.js
Expand Up @@ -27,7 +27,7 @@ module.exports = function( grunt ) {

try {
grunt.log.writeln( 'Creating a symlink...' );
fs.symlinkSync( '../' + externalPluginDir, installationPluginDir );
fs.symlinkSync( '../' + externalPluginDir, installationPluginDir, 'dir' );

grunt.log.writeln( 'Adding the plugin to files ignored by Git...' );
addPluginDirToGitExclude( installationPluginDir );
Expand Down

0 comments on commit 1cbc97a

Please sign in to comment.