mirror of
				https://github.com/cp6/my-idlers.git
				synced 2025-10-30 22:09:10 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			15 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
			
		
		
	
	
			15 lines
		
	
	
	
		
			342 B
		
	
	
	
		
			Bash
		
	
	
	
	
	
| #!/bin/sh
 | |
| basedir=$(dirname "$(echo "$0" | sed -e 's,\\,/,g')")
 | |
| 
 | |
| case `uname` in
 | |
|     *CYGWIN*|*MINGW*|*MSYS*) basedir=`cygpath -w "$basedir"`;;
 | |
| esac
 | |
| 
 | |
| if [ -x "$basedir/node" ]; then
 | |
|   "$basedir/node"  "$basedir/../import-local/fixtures/cli.js" "$@"
 | |
|   ret=$?
 | |
| else 
 | |
|   node  "$basedir/../import-local/fixtures/cli.js" "$@"
 | |
|   ret=$?
 | |
| fi
 | |
| exit $ret
 |