8 lines
153 B
Bash
8 lines
153 B
Bash
#!/bin/bash
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
|
|
set -e
|
|
|
|
exec sh -c "env PATH=$PATH $*"
|