Skip to content

Commit 3cec567

Browse files
committed
Fixes
1 parent f18a77c commit 3cec567

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/compiler.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,10 @@ def compile(self):
3232

3333
self.logger.log("Symfony2 Heroku Buildpack: Slug compilation start")
3434

35-
self.logger.log("Cache dir path:"+self._bp.cache_dir)
36-
self.logger.log("Cache dir:")
37-
print self.listdir_fullpath(self._bp.cache_dir)
38-
sys.exit(1)
35+
#self.logger.log("Cache dir path:"+self._bp.cache_dir)
36+
#self.logger.log("Cache dir:")
37+
#print self.listdir_fullpath(self._bp.cache_dir)
38+
#sys.exit(1)
3939

4040

4141
self.isolate_app_files()
@@ -342,7 +342,7 @@ def install_application(self):
342342
self.logger.log("Store vendors in cache folder for next compilation", 1)
343343
if os.path.isdir(self._bp.cache_dir+'/www/vendor'):
344344
shutil.rmtree(self._bp.cache_dir+'/www/vendor')
345-
shutil.copytree('/www/vendor', self._bp.cache_dir+'/www/vendor')
345+
shutil.copytree('www/vendor', self._bp.cache_dir+'/www/vendor')
346346

347347
self.logger.log('Delete sub \'.git\' folder for each vendor')
348348
if os.path.isdir('www/vendor'):

0 commit comments

Comments
 (0)