This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
# | |
# This script will automatically mount the shared folder named `sharedFolderName` | |
# on `targetDirectory` when the docker machine starts. | |
# | |
# This script must be located at /var/lib/boot2docker/bootlocal.sh on the docker machine. | |
# | |
# The shared folder must be configured in VirtualBox shared folders first. The name should be the | |
# same as `sharedFolderName` (see below) and the path should be the path (on your host machine) to | |
# the directory that you want to mount. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#import <Foundation/Foundation.h> | |
@interface AppDownloadQueueOperation : NSOperation | |
- (instancetype)initWithURLSessionDataTask:(NSURLSessionDataTask *)dataTask; | |
@property (nonatomic, strong, readonly) NSURLSessionDataTask *dataTask; | |
@end |