Skip to content

Commit

Permalink
Merge pull request #179 from SpiderOak/management_console_2.0.5
Browse files Browse the repository at this point in the history
add version to folder name when building upgrade package
  • Loading branch information
bdzim committed Oct 21, 2014
2 parents 2361c7a + 7f264fd commit bf1d96d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion deploy/make_tarball.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ management_files=$3
echo "Building OpenManage software suite from $source_dir"

deploy_dir=$source_dir/deploy # source_dir/deploy
buildit_dir=$deploy_dir/openmanage # source_dir/deploy/openmanage
buildit_dir=$deploy_dir/openmanage-$version # source_dir/deploy/openmanage

# The following script gets packages, like from pip, and puts them in $source_dir/upgrade.
echo
Expand Down
5 changes: 5 additions & 0 deletions django/omva/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -188,3 +188,8 @@
'handlers': ['console']
}
}

try:
from dev_settings import *
except Exception:
pass

0 comments on commit bf1d96d

Please sign in to comment.