View Single Post
10-01-18, 04:09 PM   #48
Xruptor
A Flamescale Wyrmkin
 
Xruptor's Avatar
AddOn Author - Click to view addons
Join Date: Mar 2005
Posts: 133
Lol!!!!

Originally Posted by p3lim View Post
YAML Code:
  1. sudo: false
  2. language: c
  3.  
  4. addons:
  5.   apt:
  6.     packages:
  7.     - pandoc
  8.  
  9. script: curl -s [url]https://raw.githubusercontent.com/BigWigsMods/packager/master/release.sh[/url] | bash
  10.  
  11. branches:
  12.   only:
  13.   - /^\d+\.\d+(\.\d+)?(-\S*)?$/
LOLOLOL I figured it out @p3lim!! Your instructions has the curl with URL tags. It should be like this.

Code:
script: curl -s https://raw.githubusercontent.com/BigWigsMods/packager/master/release.sh | bash
It worked perfectly when I did this. It's all working fine now Turns out no you don't need the .pkgmeta file if you want to just upload it the way it is without modifications.
__________________
Click HERE for the ultimate idiot test.

if (sizeof(sadness) > sizeof(happiness)) { initDepression(); }

Last edited by Xruptor : 10-01-18 at 04:45 PM.
  Reply With Quote