File tree 3 files changed +11
-1
lines changed
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[] |
254
254
255
255
# Download the libs package
256
256
echo " 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
258
258
259
259
# Extract the libs package
260
260
echo " Extracting the archive ..."
Original file line number Diff line number Diff line change @@ -300,6 +300,14 @@ bool FS::rmdir(const String &path)
300
300
return rmdir (path.c_str ());
301
301
}
302
302
303
+ const char * FS::mountpoint ()
304
+ {
305
+ if (!_impl) {
306
+ return NULL ;
307
+ }
308
+ return _impl->mountpoint ();
309
+ }
310
+
303
311
304
312
void FSImpl::mountpoint (const char * mp)
305
313
{
Original file line number Diff line number Diff line change @@ -110,6 +110,8 @@ class FS
110
110
111
111
bool rmdir (const char *path);
112
112
bool rmdir (const String &path);
113
+
114
+ const char * mountpoint ();
113
115
114
116
115
117
protected:
You can’t perform that action at this time.
0 commit comments