diff options
author | Ondřej Surý <ondrej@sury.org> | 2011-08-03 16:54:30 +0200 |
---|---|---|
committer | Ondřej Surý <ondrej@sury.org> | 2011-08-03 16:54:30 +0200 |
commit | 28592ee1ea1f5cdffcf85472f9de0285d928cf12 (patch) | |
tree | 32944e18b23f7fe4a0818a694aa2a6dfb1835463 /misc/nacl/naclrun | |
parent | e836bee4716dc0d4d913537ad3ad1925a7ac32d0 (diff) | |
download | golang-upstream/59.tar.gz |
Imported Upstream version 59upstream/59
Diffstat (limited to 'misc/nacl/naclrun')
-rwxr-xr-x | misc/nacl/naclrun | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/misc/nacl/naclrun b/misc/nacl/naclrun deleted file mode 100755 index 1cdcf876c..000000000 --- a/misc/nacl/naclrun +++ /dev/null @@ -1,15 +0,0 @@ -#!/bin/sh -# Copyright 2010 The Go Authors. All rights reserved. -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. - -# Run nacl binary in debug mode (allow file access) -# and then grep away the chatter. -# See ../../src/pkg/exp/nacl/README for more on -# how to configure NaCl. - -nacl -d "$@" >/tmp/nacl.out.$$ 2>&1 -status=$? -egrep -v 'DEBUG MODE ENABLED|^\[[0-9]+,' /tmp/nacl.out.$$ -rm -f /tmp/nacl.out.$$ -exit $status |