Browse Source

Update URL in prelink script

Ben Hsieh 8 years ago
parent
commit
fd95952164
1 changed files with 3 additions and 3 deletions
  1. 3
    3
      src/scripts/prelink.js

+ 3
- 3
src/scripts/prelink.js View File

19
       console.log(
19
       console.log(
20
         '\033[95mreact-native-fetch-blob\033[97m link \033[91mFAILED \033[97m\nCould not automatically link Android package, '+
20
         '\033[95mreact-native-fetch-blob\033[97m link \033[91mFAILED \033[97m\nCould not automatically link Android package, '+
21
         'please follow the instructions to manually link the library : ' +
21
         'please follow the instructions to manually link the library : ' +
22
-        '\033[4mhttps://github.com/wkh237/react-native-fetch-blob#manually-link-the-package-android\n\n')
22
+        '\033[4mhttps://github.com/wkh237/react-native-fetch-blob/wiki/Manually-Link-Package\n\n')
23
       return
23
       return
24
     }
24
     }
25
     var main = fs.readFileSync(APPLICATION_MAIN);
25
     var main = fs.readFileSync(APPLICATION_MAIN);
79
     console.log(
79
     console.log(
80
       '\033[95mreact-native-fetch-blob \033[97mwill not automatically add Android permissions after \033[92m0.9.4 '+
80
       '\033[95mreact-native-fetch-blob \033[97mwill not automatically add Android permissions after \033[92m0.9.4 '+
81
       '\033[97mplease run the following command if you want to add default permissions :\n\n' +
81
       '\033[97mplease run the following command if you want to add default permissions :\n\n' +
82
-      '\033[96m\tRNFB_ANDROID_PERMISSION=true rnpm link\n\n')
82
+      '\033[96m\tRNFB_ANDROID_PERMISSION=true rnpm link\n')
83
   }
83
   }
84
 
84
 
85
   function checkVersion() {
85
   function checkVersion() {
92
     '\033[95mreact-native-fetch-blob\033[97m link \033[91mFAILED \033[97m\nCould not automatically link package :'+
92
     '\033[95mreact-native-fetch-blob\033[97m link \033[91mFAILED \033[97m\nCould not automatically link package :'+
93
     err.stack +
93
     err.stack +
94
     'please follow the instructions to manually link the library : ' +
94
     'please follow the instructions to manually link the library : ' +
95
-    '\033[4mhttps://github.com/wkh237/react-native-fetch-blob#manually-link-the-package-android\n\n')
95
+    '\033[4mhttps://github.com/wkh237/react-native-fetch-blob/wiki/Manually-Link-Package\n')
96
 }
96
 }