cloud-hypervisor/vendor/registry-40351f815f426200/strsim/dev
Samuel Ortiz d5f5648b37 vendor: Add vendored dependencies
We use cargo vendor to generate a .cargo/config file and the vendor
directory. Vendoring allows us to lock our dependencies and to modify
them easily from the top level Cargo.toml.

We vendor all dependencies, including the crates.io ones, which allows
for network isolated builds.

Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
2019-06-04 17:51:52 +02:00

15 lines
299 B
Python
Executable File

#!/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)