From b67a955fcd802755c22c497403026a15eb16dec7 Mon Sep 17 00:00:00 2001 From: Mikael Mortensen Date: Fri, 23 Aug 2024 07:43:55 +0200 Subject: [PATCH] Update devcontainer.json --- .devcontainer/devcontainer.json | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index c0c5bca..fed786a 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -16,10 +16,10 @@ } }, "postCreateCommand": [ - echo 'pyver=$(python -c "import sys;print(sys.version[:(len(str(sys.version_info.major))+len(str(sys.version_info.minor))+1)])")' >> ~/.bashrc, - echo 'source activate l2copenblas' >> ~/.bashrc, - echo 'export PATH=/workspaces/Legendre-to-Chebyshev/src/build-install/bin:$PATH' >> ~/.bashrc, - echo 'export LD_LIBRARY_PATH=/workspaces/Legendre-to-Chebyshev/src/build-install/lib:$LD_LIBRARY_PATH' >> ~/.bashrc, - echo 'export PYTHONPATH=/workspaces/Legendre-to-Chebyshev/src/build-install/lib/python${pyver}/site-packages:$PYTHONPATH' >> ~/.bashrc + echo "pyver=$(python -c 'import sys;print(sys.version[:(len(str(sys.version_info.major))+len(str(sys.version_info.minor))+1)])')" >> ~/.bashrc, + echo "source activate l2copenblas" >> ~/.bashrc, + echo "export PATH=/workspaces/Legendre-to-Chebyshev/src/build-install/bin:$PATH" >> ~/.bashrc, + echo "export LD_LIBRARY_PATH=/workspaces/Legendre-to-Chebyshev/src/build-install/lib:$LD_LIBRARY_PATH" >> ~/.bashrc, + echo "export PYTHONPATH=/workspaces/Legendre-to-Chebyshev/src/build-install/lib/python${pyver}/site-packages:$PYTHONPATH" >> ~/.bashrc ] }