Fixed temporary dir removing. Fixed printing path to log. Module checks moved to the separate file.
7 lines
120 B
Python
7 lines
120 B
Python
import os
|
|
|
|
|
|
def check_node(current_dir):
|
|
if os.path.exists(current_dir + '/node/node_modules'):
|
|
return True
|