Skip to content

Commit

Permalink
Add the possibility to have a DIRMUSC environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
romainroehrig committed Feb 16, 2022
1 parent 9240e4d commit da2b040
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion apptools/MUSC.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,9 @@
# http://www.cecill.info

import os
dirMUSC = os.getcwd()
dirMUSC = os.getenv('DIRMUSC')
if not(dirMUSC):
dirMUSC = os.getcwd()

import argparse
import importlib
Expand Down

0 comments on commit da2b040

Please sign in to comment.