-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #346 from ooyala/feature/PLAYER-4906
Inject webpack into html5_video_plugin repo
- Loading branch information
Showing
5 changed files
with
4,854 additions
and
1,933 deletions.
There are no files selected for viewing
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
const exec = require('child_process').exec; | ||
|
||
exec("ant -buildfile build_flash.xml -Dbuild=build/classes wrapper", function(err) { | ||
exec("ant -buildfile build_flash.xml -Dbuild=build/classes build-CC-osmf", function(err) { | ||
exec("ant -buildfile build_flash.xml -Dbuild=build/classes build-osmf", function(err) { | ||
if (err) console.log("Error occured in building osmf plugin : " + err); | ||
exec("ant -buildfile build_flash.xml -Dbuild=build/classes clean-osmf", function(err) { | ||
if (err) return console.log(err); | ||
}); | ||
}); | ||
}); | ||
}); | ||
|
||
exec("ant -buildfile build_flash.xml -Dbuild=build/classes wrapper", function(err) { | ||
exec("ant -buildfile build_flash.xml -Dbuild=build/classes build-CC-akamai", function(err) { | ||
exec("ant -buildfile build_flash.xml -Dbuild=build/classes build-akamai", function(err) { | ||
if (err) console.log("Error occured in building akamai plugin : " + err); | ||
exec("ant -buildfile build_flash.xml -Dbuild=build/classes clean-akamai", function(err) { | ||
if (err) return console.log(err); | ||
}); | ||
}); | ||
}); | ||
}); |
Oops, something went wrong.