Skip to content

Commit

Permalink
Do nothing if plugins dir doesn't exist deskflow#4695
Browse files Browse the repository at this point in the history
  • Loading branch information
Nick Bolton committed May 25, 2015
1 parent 14bb44f commit 38bcea5
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions ext/toolchain/commands1.py
Original file line number Diff line number Diff line change
Expand Up @@ -1376,6 +1376,9 @@ def getLibraryDistFilename(self, type, dir, name):
return filename

def findLibraryFile(self, type, dir, name):
if not os.path.exists(dir):
return None

(platform, packageExt, libraryExt) = self.getDistributePlatformInfo(type)
ext = libraryExt

Expand Down

0 comments on commit 38bcea5

Please sign in to comment.