diff options
| author | Mike Buland <eichlan@xagasoft.com> | 2009-08-14 22:46:36 +0000 |
|---|---|---|
| committer | Mike Buland <eichlan@xagasoft.com> | 2009-08-14 22:46:36 +0000 |
| commit | 6f2f2358affacfa067426a334e911ce9485bf59b (patch) | |
| tree | e23ce996ab195dd4a44498ca60f67023d0c98743 /src | |
| parent | e3180ada12753c23d67be6a9eb9c19fb92f6c8e5 (diff) | |
| download | build-6f2f2358affacfa067426a334e911ce9485bf59b.tar.gz build-6f2f2358affacfa067426a334e911ce9485bf59b.tar.bz2 build-6f2f2358affacfa067426a334e911ce9485bf59b.tar.xz build-6f2f2358affacfa067426a334e911ce9485bf59b.zip | |
Corrected a minor bug preventing custom actions from being executed.
Diffstat (limited to '')
| -rw-r--r-- | src/main.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp index 4153982..1d3dc10 100644 --- a/src/main.cpp +++ b/src/main.cpp | |||
| @@ -139,7 +139,7 @@ int main( int argc, char *argv[] ) | |||
| 139 | } | 139 | } |
| 140 | else | 140 | else |
| 141 | { | 141 | { |
| 142 | if( !prm.sAction.isSet() ) | 142 | if( prm.sAction.isSet() ) |
| 143 | pBuild->execAction( prm.sAction.getStr() ); | 143 | pBuild->execAction( prm.sAction.getStr() ); |
| 144 | else | 144 | else |
| 145 | pBuild->execAction(""); | 145 | pBuild->execAction(""); |
