Expliciting which file is checking out.
This commit is contained in:
parent
db419bb825
commit
960bab4dee
@ -77,6 +77,7 @@ class Build(object):
|
|||||||
for arch in self.arch:
|
for arch in self.arch:
|
||||||
# For generalized builds, we need to check if there are .ver file
|
# For generalized builds, we need to check if there are .ver file
|
||||||
# and it contains the specific version found.
|
# and it contains the specific version found.
|
||||||
|
print("Debug: searching for {file}".format(file = self.genappimagefilename[arch] . 'ver'))
|
||||||
res = subprocess.run("find {path} -name {appimage}'".format(
|
res = subprocess.run("find {path} -name {appimage}'".format(
|
||||||
path = self.storage_path,
|
path = self.storage_path,
|
||||||
appimage = self.genappimagefilename[arch] + '.ver'
|
appimage = self.genappimagefilename[arch] + '.ver'
|
||||||
@ -87,6 +88,7 @@ class Build(object):
|
|||||||
if self.version in open(file, 'r').read():
|
if self.version in open(file, 'r').read():
|
||||||
self.built = True
|
self.built = True
|
||||||
|
|
||||||
|
print("Debug: searching for {file}".format(file = self.appimagefilename[arch]))
|
||||||
res = subprocess.run("find {path} -name '{appimage}'".format(
|
res = subprocess.run("find {path} -name '{appimage}'".format(
|
||||||
path = self.storage_path,
|
path = self.storage_path,
|
||||||
appimage = self.appimagefilename[arch]
|
appimage = self.appimagefilename[arch]
|
||||||
|
Reference in New Issue
Block a user