diff options
Diffstat (limited to 'distribution/src/js/npm/bin/cli.js')
-rwxr-xr-x | distribution/src/js/npm/bin/cli.js | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/distribution/src/js/npm/bin/cli.js b/distribution/src/js/npm/bin/cli.js deleted file mode 100755 index d692d5aafaf..00000000000 --- a/distribution/src/js/npm/bin/cli.js +++ /dev/null @@ -1,22 +0,0 @@ -#!/usr/bin/env node -// ********************************************************************** -// -// Copyright (c) 2003-2015 ZeroC, Inc. All rights reserved. -// -// This copy of Ice is licensed to you under the terms described in the -// ICE_LICENSE file included in this distribution. -// -// ********************************************************************** - -'use strict'; - -var binPath = require('../installSlice2js').path; -var spawn = require('child_process').spawn; -var path = require('path'); - -var SLICE_DIR = path.resolve(path.join('..', 'slice')); - -var args = process.argv.slice(2); -args.push('-I'+SLICE_DIR); - -spawn(binPath, args, { stdio: 'inherit' }).on('exit', process.exit); |