mirror of
				https://github.com/therootcompany/greenlock.js.git
				synced 2024-11-16 17:29:00 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			14 lines
		
	
	
		
			281 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
			
		
		
	
	
			14 lines
		
	
	
		
			281 B
		
	
	
	
		
			JavaScript
		
	
	
		
			Executable File
		
	
	
	
	
| #!/usr/bin/env node
 | |
| 'use strict';
 | |
| 
 | |
| var args = process.argv.slice(2);
 | |
| //console.log(args);
 | |
| //['certonly', 'add', 'config', 'defaults', 'remove']
 | |
| if ('certonly' === args[0]) {
 | |
|     require('./certonly.js');
 | |
|     return;
 | |
| }
 | |
| 
 | |
| console.error("command not yet implemented");
 | |
| process.exit();
 |