bugfix @4

This commit is contained in:
xdrm-brackets 2017-09-28 18:56:36 +02:00
parent 8f9aa3c02d
commit 414bd04c44
1 changed files with 2 additions and 2 deletions

View File

@ -118,13 +118,13 @@
/* (2) Check if specific data in response */ /* (2) Check if specific data in response */
if( !isset($arr_r['feature'][$feat_name]) ){ if( !isset($arr_r['feature'][$feat_name]) ){
slog("No data found for $eat_name", "api:deploy", 'update'); slog("No data found for $feat_name", "api:deploy", 'update');
continue; continue;
} }
/* (3) Check for feature deploy script */ /* (3) Check for feature deploy script */
if( !file_exists(SOURCE_DIR."/feature/$feat_name/deploy") ){ if( !file_exists(SOURCE_DIR."/feature/$feat_name/deploy") ){
slog("No deploy script found for $eat_name", "api:deploy", 'update'); slog("No deploy script found for $feat_name", "api:deploy", 'update');
continue; continue;
} }