We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0fa43be commit 3fb661fCopy full SHA for 3fb661f
sebs/openwhisk/openwhisk.py
@@ -168,7 +168,7 @@ def build_base_image(
168
)
169
170
for fn in os.listdir(directory):
171
- if fn not in ("index.js", "__main__.py"):
+ if fn not in ("index.js", "__main__.py", "Main.java"):
172
file = os.path.join(directory, fn)
173
shutil.move(file, build_dir)
174
@@ -219,6 +219,7 @@ def package_code(
219
CONFIG_FILES = {
220
"python": ["__main__.py"],
221
"nodejs": ["index.js"],
222
+ "nodejs": ["Main.java"],
223
}
224
package_config = CONFIG_FILES[language_name]
225
0 commit comments