Skip to content
This repository has been archived by the owner on Feb 9, 2020. It is now read-only.

Commit

Permalink
Make sure we can read manifest
Browse files Browse the repository at this point in the history
  • Loading branch information
J2TEAM committed Jun 23, 2017
1 parent eec3799 commit 54b14fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Chrome Extension Checker.au3
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#AutoIt3Wrapper_UseUpx=Y
#AutoIt3Wrapper_Res_Comment=Developed by Juno_okyo
#AutoIt3Wrapper_Res_Description=Developed by Juno_okyo
#AutoIt3Wrapper_Res_Fileversion=1.0.0.2
#AutoIt3Wrapper_Res_Fileversion=1.0.0.4
#AutoIt3Wrapper_Res_FileVersion_AutoIncrement=Y
#AutoIt3Wrapper_Res_ProductVersion=1.0.0.0
#AutoIt3Wrapper_Res_LegalCopyright=(C) 2017 Juno_okyo. All rights reserved.
Expand Down Expand Up @@ -164,7 +164,7 @@ EndFunc

Func getManifestPath($path)
Local $tempArr = _FileListToArray($path, '*', 2, True)
If Not @error And $tempArr[0] == 1 Then
If Not @error And $tempArr[0] > 0 Then
Return $tempArr[1] & '\manifest.json'
Else
Return False
Expand Down

0 comments on commit 54b14fa

Please sign in to comment.