Ver código fonte

Create shell script by default

Alois Mahdal 12 anos atrás
pai
commit
19c9f65823
1 arquivos alterados com 1 adições e 1 exclusões
  1. 1
    1
      bin/mkexec

+ 1
- 1
bin/mkexec Ver arquivo

7
 sub usage; sub mkexec; sub guesstype; sub getcmd; sub launch_editor;
7
 sub usage; sub mkexec; sub guesstype; sub getcmd; sub launch_editor;
8
 sub nextarg { $ARGV[0] }
8
 sub nextarg { $ARGV[0] }
9
 
9
 
10
-my $DEFAULT_TYPE = 'pl';
10
+my $DEFAULT_TYPE = 'sh';
11
 my $DEFAULT_MODE = 0755;
11
 my $DEFAULT_MODE = 0755;
12
 my $DEFAULT_FORCE = 0;
12
 my $DEFAULT_FORCE = 0;
13
 
13