Skip to content

Commit

Permalink
[fix] Separate subdomain parts with a hyphen instead of a dot
Browse files Browse the repository at this point in the history
  • Loading branch information
mmalecki committed Mar 7, 2013
1 parent b1a818c commit a35bbd1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/jitsu/package.js
Expand Up @@ -554,7 +554,7 @@ package.properties = function (dir) {
'The app will then become accessible at: http://' + 'subdomain'.grey + '.jit.su',
''
],
default: jitsu.config.get('username') + '.' + path.basename(dir)
default: jitsu.config.get('username') + '-' + path.basename(dir)
},
{
name: 'scripts.start',
Expand Down

0 comments on commit a35bbd1

Please sign in to comment.