tobiko/tools/ci/realpath
Federico Ressi 27e46c8c39 Update CI tools with an openstack wrapper
Change-Id: I786884c540962fd908b0d323938aa9733ead65ce
2019-06-25 14:32:31 +02:00

9 lines
145 B
Python
Executable File

#!/usr/bin/env python
import os
import sys
args = sys.argv[1:] or ['.']
results = [os.path.realpath(a) for a in args]
print(' '.join(results))