log.info('Nuevo intento a probar (%s)', intento)
# Obtengo paths
intento_dir = os.path.join(data_dir, intento.path('intentos'))
- entrega_dir = os.path.join(data_dir, intento.path('entregas'))
+ entrega_dir = os.path.join(data_dir, 'ejercicios', str(intento.entrega.ejercicioID))
+ print entrega_dir
# Busco makefile
makefile = os.path.join(entrega_dir, 'Makefile')
if not os.path.exists(makefile):
makefile = os.path.join(data_dir, 'Makefile')
shutil.copy(makefile, intento_dir)
# Compilo
- log.debug('A punto de ejecutar el comando: make -f %s', makefile)
+ log.debug('Ejecutando: make -f %s', makefile)
intento.inicioCompila = datetime.datetime.now()
make = subprocess.Popen(('make', '-f', makefile), stdout=subprocess.PIPE,
stderr=subprocess.PIPE, cwd=intento_dir)