Skip to content

Commit

Permalink
Expand environment variables for backup path
Browse files Browse the repository at this point in the history
  • Loading branch information
holtwick committed Sep 7, 2010
1 parent a96c5ab commit caa59d8
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions xobjc.py
Expand Up @@ -84,6 +84,9 @@
- Fix: Can handle missing spaces around asterisk
- External settings did not work, therefore removed
0.12
- Expand environment variables for backup path
TODO:
- Work with more implementations etc. in one file and match name
Expand All @@ -96,7 +99,7 @@
"""

__version__ = "0.11"
__version__ = "0.12"

import re
import os
Expand All @@ -109,8 +112,8 @@
### CONFIG BEGIN

DEBUG = 0
BACKUP_FOLDER = 'BACKUP-XOBJC'
# BACKUP_FOLDER = '/Users/dirk/work/_build/BACKUP-XOBJC'
# BACKUP_FOLDER = 'BACKUP-XOBJC'
BACKUP_FOLDER = os.path.expandvars('${HOME}/work/_build/__xobjc_backup')
FORCE_METHODS = False #True
STRIP_TRAILING_SPACES = True
NONATOMIC = ""
Expand Down

0 comments on commit caa59d8

Please sign in to comment.