You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: android/upload_sourcemap.sh
+13-2Lines changed: 13 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -32,10 +32,21 @@ else
32
32
exit 0
33
33
fi
34
34
fi
35
+
if [ -z"${INSTABUG_ENTRY_FILE}" ];then
36
+
ENTRY_FILE='index.js'
37
+
else
38
+
ENTRY_FILE=${INSTABUG_ENTRY_FILE}
39
+
fi
40
+
if [ !-f$ENTRY_FILE ];then
41
+
echo"Instabug: err: entry file not found. Make sure""\"${ENTRY_FILE}\"""exists in your projects root directory. Or add the environment variable INSTABUG_ENTRY_FILE with the name of your entry file"
Copy file name to clipboardExpand all lines: ios/upload_sourcemap.sh
+12-1Lines changed: 12 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -60,13 +60,24 @@ else
60
60
fi
61
61
fi
62
62
fi
63
+
if [ -z"${INSTABUG_ENTRY_FILE}" ];then
64
+
ENTRY_FILE='index.js'
65
+
else
66
+
ENTRY_FILE=${INSTABUG_ENTRY_FILE}
67
+
fi
68
+
if [ !-f$ENTRY_FILE ];then
69
+
echo"Instabug: err: entry file not found. Make sure""\"${ENTRY_FILE}\"""exists in your projects root directory. Or add the environment variable INSTABUG_ENTRY_FILE with the name of your entry file"
0 commit comments