File tree Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Expand file tree Collapse file tree 3 files changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -254,7 +254,7 @@ LIBS_PACKAGE_SRC_URL=`cat $PACKAGE_JSON_TEMPLATE | jq -r ".packages[0].tools[] |
254254
255255# Download the libs package
256256echo " Downloading the libs archive ..."
257- # curl -o "$LIBS_PACKAGE_SRC_ZIP" -LJO --url "$LIBS_PACKAGE_SRC_URL" || exit 1
257+ curl -o " $LIBS_PACKAGE_SRC_ZIP " -LJO --url " $LIBS_PACKAGE_SRC_URL " || exit 1
258258
259259# Extract the libs package
260260echo " Extracting the archive ..."
Original file line number Diff line number Diff line change @@ -300,6 +300,14 @@ bool FS::rmdir(const String &path)
300300 return rmdir (path.c_str ());
301301}
302302
303+ const char * FS::mountpoint ()
304+ {
305+ if (!_impl) {
306+ return NULL ;
307+ }
308+ return _impl->mountpoint ();
309+ }
310+
303311
304312void FSImpl::mountpoint (const char * mp)
305313{
Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ class FS
110110
111111 bool rmdir (const char *path);
112112 bool rmdir (const String &path);
113+
114+ const char * mountpoint ();
113115
114116
115117protected:
You can’t perform that action at this time.
0 commit comments