mirror of
https://gitee.com/openharmony/third_party_rust_strsim-rs
synced 2024-11-23 07:39:51 +00:00
15 lines
299 B
Plaintext
15 lines
299 B
Plaintext
|
#!/usr/bin/env python
|
||
|
|
||
|
from __future__ import print_function
|
||
|
|
||
|
import os
|
||
|
from subprocess import call
|
||
|
import sys
|
||
|
|
||
|
try:
|
||
|
call(['docker', 'run', '-it', '--rm', '-v', os.getcwd() + ':/source',
|
||
|
'jimmycuadra/rust:1.14.0'])
|
||
|
except OSError:
|
||
|
print('Please install Docker.', file=sys.stderr)
|
||
|
|