droidscout
Results
2
comments of
droidscout
Code snippet from 12/s2i/bin/assemble: ``` if [ "$NODE_ENV" != "production" ]; then echo "---> Building your Node application from source" npm install else echo "---> Installing all dependencies" NODE_ENV=development npm...
Everybody who encounters the same problem, change the function: range_to_pattern to the following: ``` def range_to_pattern(start, stop): pattern = '' any_digit_count = 0 for start_digit, stop_digit in zip(str(start), str(stop)): if...