mirror of
https://github.com/jupyter/docker-stacks.git
synced 2025-10-10 11:32:57 +00:00
13 lines
253 B
Python
Executable File
13 lines
253 B
Python
Executable File
#!/usr/bin/env python3
|
|
# Copyright (c) Jupyter Development Team.
|
|
# Distributed under the terms of the Modified BSD License.
|
|
import os
|
|
import sys
|
|
|
|
print("Started: b.py")
|
|
print(f"OTHER_VAR={os.environ['OTHER_VAR']}")
|
|
|
|
sys.exit(1)
|
|
|
|
print("Finished: b.py")
|