File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -20,13 +20,13 @@ cat << EOF > "${TMP}/mount_package/subpackage/y.py"
20
20
def y():
21
21
print("y")
22
22
EOF
23
- $MPREMOTE mount ${TMP} exec " import mount_package; mount_package.x(); mount_package.y()"
23
+ $MPREMOTE mount " ${TMP} " exec " import mount_package; mount_package.x(); mount_package.y()"
24
24
25
25
# Write to a file on the device and see that it's written locally.
26
26
echo -----
27
- $MPREMOTE mount ${TMP} exec " open('test.txt', 'w').write('hello world\n')"
27
+ $MPREMOTE mount " ${TMP} " exec " open('test.txt', 'w').write('hello world\n')"
28
28
cat " ${TMP} /test.txt"
29
29
30
30
# Test RemoteFile.readline and RemoteFile.readlines methods.
31
31
echo -----
32
- $MPREMOTE mount ${TMP} exec " print(open('test.txt').readlines())"
32
+ $MPREMOTE mount " ${TMP} " exec " print(open('test.txt').readlines())"
You can’t perform that action at this time.
0 commit comments